git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@18169 44c647ce-9c0f-0410-b52a-842ac1e357ba
@@ -38,6 +38,10 @@ class Zend_Crypt_Math_BigInteger_BcmathTest extends PHPUnit_Framework_TestCase
public function setUp()
{
+ if (!extension_loaded('bcmath')) {
+ $this->markTestSkipped('Skipped: Zend_Crypt_Math_BigInteger_BcmathTest due to ext/bcmath being unavailable');
+ return;
+ }
$this->_math = new Zend_Crypt_Math_BigInteger_Bcmath;
}