Enth\u00e4lt gemischt: Laravel-10-Upgrade + Phase 1 (Contacts-Modul, Duplicats-Commands, Soft-Delete+Merge-Fields) + Phase 2 Code-Umstellungen (inquiry_id, $table='contacts'/'inquiries') + Offers-Modul (Migrationen, Models, offer_id in Booking, offer-Disk in filesystems.php). Phase 2 + Offers werden im folgenden Commit nach dev/backups/phase2-offers-2026-04-17/ verschoben, damit der Workspace auf Phase-1-only (= Test-System-Stand) reduziert ist und direkt auf Live deploybar wird. Tarball-Backup zus\u00e4tzlich unter: ../backups-safety/workspace-pre-phase1-rollback-2026-04-17.tar.gz Made-with: Cursor
35 lines
986 B
PHP
35 lines
986 B
PHP
<?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}.");
|
|
}
|
|
}
|