orders() public method

public orders ( ) : Dumplie\Customer\Domain\Orders
return Dumplie\Customer\Domain\Orders
示例#1
0
 function test_placing_new_order()
 {
     $cartId = $this->customerContext->createNewCartWithProducts('EUR', ['SKU_1', 'SKU_2']);
     $this->customerContext->checkout($cartId);
     $orderId = OrderId::generate();
     $placeOrderCommand = new PlaceOrder((string) $cartId, (string) $orderId);
     $this->customerContext->commandBus()->handle($placeOrderCommand);
     $this->clear();
     $this->assertFalse($this->customerContext->carts()->exists($cartId));
     $this->assertFalse($this->customerContext->checkouts()->existsForCart($cartId));
     $this->assertTrue($this->customerContext->orders()->exists($orderId));
 }