Example #1
0
 public function testEqualsOnDifferent()
 {
     $price1 = new Price(['GBP' => 1, 'USD' => 10]);
     $price2 = new Price(['GBP' => 1, 'EUR' => 10]);
     $this->assertFalse($price1->equals($price2));
 }