Beispiel #1
0
 /**
  * @covers \Elcodi\Component\Currency\Entity\Money::isGreaterThan
  */
 public function testIsGreaterThan()
 {
     $fiftyDollars = Money::create(50, $this->currencyMockUSD);
     $this->assertTrue($this->oneHundredDollars->isGreaterThan($fiftyDollars));
 }