Пример #1
0
 /**
  * This test checks the Flt's multiply() method.
  *
  * @return void
  */
 public function testMultiply()
 {
     // initialize a new Flt instance
     $int = new Flt(10.0);
     $int->multiply(new Flt(10.0));
     // check the value
     $this->assertEquals(100.0, $int->floatValue());
 }