We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7336321 commit 60105a9Copy full SHA for 60105a9
tests/Units/Domain/CartTest.php
@@ -201,6 +201,9 @@ public function testModelNotFoundException(): void
201
}
202
203
self::assertCount($total, $cart->getItems());
204
+ self::assertCount(count($products) - 1, $cart->getBasketDto()->items());
205
+ self::assertCount($total, $cart->getBasketDto()->cursor());
206
+ self::assertSame($total, $cart->getBasketDto()->total());
207
208
$transfers = $buyer->payCart($cart);
209
self::assertCount($total, $transfers);
0 commit comments