/**
  * test toString
  * expected string
  */
 public function testViscosity_KinematicToString()
 {
     $value = new Zend_Measure_Viscosity_Kinematic('-100', Zend_Measure_Viscosity_Kinematic::STANDARD, 'de');
     $this->assertEquals($value->toString(), '-100 m²/s', 'Value -100 m²/s expected');
 }
Beispiel #2
0
 /**
  * Compare if the value and type is equal
  *
  * @param  Zend_Measure_Viscosity_Kinematic  $object  Viscosity Kinematic object to compare
  * @return boolean
  */
 public function equals($object)
 {
     if ($object->toString() == $this->toString()) {
         return true;
     }
     return false;
 }