Пример #1
0
 /**
  * test getConversionList
  * expected array
  */
 public function testForceConversionList()
 {
     $value = new Zend_Measure_Force('-100', Zend_Measure_Force::STANDARD, 'de');
     $unit = $value->getConversionList();
     $this->assertTrue(is_array($unit), 'Array expected');
 }
Пример #2
0
 /**
  * Compare if the value and type is equal
  *
  * @param  Zend_Measure_Force  $object  Force object to compare
  * @return boolean
  */
 public function equals($object)
 {
     if ($object->toString() == $this->toString()) {
         return true;
     }
     return false;
 }