コード例 #1
0
 public function testCalculatesDifference2()
 {
     $a = new Decimal2('-10');
     $b = new Decimal2('5');
     $this->assertEquals('-15.00', strval(Decimal2::minus($a, $b)));
 }