Example #1
0
 public function testPayMethodReturnFalse()
 {
     $order = new Order(new ProductList());
     $mockPaymentMethod = new MockFalseChargePaymentMethod();
     $order->setPaymentMethod($mockPaymentMethod);
     $this->assertFalse($order->pay());
 }