Beispiel #1
0
 public function testPowerWithBCMathAndExponent()
 {
     if (!extension_loaded('bcmath')) {
         $this->markTestSkipped('BCMath extension not loaded, test skipped');
         return;
     }
     $this->assertEquals('1000000', Zend_Locale_Math::Pow('1e3', 2));
 }