コード例 #1
0
ファイル: MathTest.php プロジェクト: ThorstenSuckow/conjoon
 public function testMul()
 {
     Zend_Locale_Math_PhpMath::disable();
     $this->assertEquals(2, Zend_Locale_Math_PhpMath::Mul(1, 2));
     $this->assertEquals(0, Zend_Locale_Math_PhpMath::Mul(null, 2));
     /**
      * BCMath extension doesn't actually operatest with a scientific notation (e.g. 1.2e+100)
      * So we shouldn't test numbers such as -9E+100, but probably should care about correct
      * float => string conversion
      *
      * @todo provide correct behavior
      */
     //try {
     //    $this->assertEquals(0, Zend_Locale_Math_PhpMath::Mul(9E+300, 9E+200));
     //    $this->fail("exception expected");
     //} catch (Zend_Locale_Math_Exception $e) {
     //    // success
     //}
     $this->assertEquals(47.58, Zend_Locale_Math_PhpMath::Mul(10.4444, 4.5556, 2));
     $this->assertEquals(48, Zend_Locale_Math_PhpMath::Mul(10.4444, 4.5556, 0));
     $this->assertEquals(-42, Zend_Locale_Math_PhpMath::Mul(-10.4444, 4, 0));
     $this->assertEquals(110, Zend_Locale_Math_PhpMath::Mul(10, 11, 2));
 }
コード例 #2
0
ファイル: MathTest.php プロジェクト: jorgenils/zend-framework
 public function testMul()
 {
     Zend_Locale_Math_PhpMath::disable();
     $this->assertEquals(2, Zend_Locale_Math_PhpMath::Mul(1, 2));
     $this->assertEquals(0, Zend_Locale_Math_PhpMath::Mul(null, 2));
     try {
         $this->assertEquals(0, Zend_Locale_Math_PhpMath::Mul(9.0E+300, 8.999999999999999E+200));
         $this->fail("exception expected");
     } catch (Zend_Locale_Math_Exception $e) {
         // success
     }
     $this->assertEquals(47.58, Zend_Locale_Math_PhpMath::Mul(10.4444, 4.5556, 2));
     $this->assertEquals(48, Zend_Locale_Math_PhpMath::Mul(10.4444, 4.5556, 0));
     $this->assertEquals(-42, Zend_Locale_Math_PhpMath::Mul(-10.4444, 4, 0));
     $this->assertEquals(110, Zend_Locale_Math_PhpMath::Mul(10, 11, 2));
 }