Inheritance: extends Dumplie\SharedKernel\Domain\Identity\UUID
Exemplo n.º 1
0
 function test_reject_payment()
 {
     $orderId = OrderId::generate();
     $this->customerServiceContext->customerPlacedOrder((string) $orderId);
     $paymentId = $this->customerServiceContext->createPaymentFor($orderId);
     $command = new RejectPayment((string) $paymentId);
     $this->customerServiceContext->commandBus()->handle($command);
     $this->clear();
     $payment = $this->customerServiceContext->payments()->getById($paymentId);
     $this->assertTrue($payment->isRejected());
 }
Exemplo n.º 2
0
 function let()
 {
     $this->beConstructedWith(OrderId::generate(), new \DateTimeImmutable());
 }