allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
35
vendor/hardevine/shoppingcart/tests/CartAssertions.php
vendored
Normal file
35
vendor/hardevine/shoppingcart/tests/CartAssertions.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Gloudemans\Tests\Shoppingcart;
|
||||
|
||||
use Gloudemans\Shoppingcart\Cart;
|
||||
use PHPUnit\Framework\Assert as PHPUnit;
|
||||
|
||||
trait CartAssertions
|
||||
{
|
||||
/**
|
||||
* Assert that the cart contains the given number of items.
|
||||
*
|
||||
* @param int|float $items
|
||||
* @param \Gloudemans\Shoppingcart\Cart $cart
|
||||
*/
|
||||
public function assertItemsInCart($items, Cart $cart)
|
||||
{
|
||||
$actual = $cart->count();
|
||||
|
||||
PHPUnit::assertEquals($items, $cart->count(), "Expected the cart to contain {$items} items, but got {$actual}.");
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that the cart contains the given number of rows.
|
||||
*
|
||||
* @param int $rows
|
||||
* @param \Gloudemans\Shoppingcart\Cart $cart
|
||||
*/
|
||||
public function assertRowsInCart($rows, Cart $cart)
|
||||
{
|
||||
$actual = $cart->content()->count();
|
||||
|
||||
PHPUnit::assertCount($rows, $cart->content(), "Expected the cart to contain {$rows} rows, but got {$actual}.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user