3
0
mirror of https://github.com/snipe/snipe-it.git synced 2025-12-01 11:30:10 +00:00
Files
snipe-it/tests/Support/AssertHasActionLogs.php
2025-07-23 14:55:42 +01:00

18 lines
571 B
PHP

<?php
namespace Tests\Support;
use App\Models\Actionlog;
use Illuminate\Database\Eloquent\Model;
use PHPUnit\Framework\Assert;
use function PHPUnit\Framework\assertEquals;
trait AssertHasActionLogs
{
public function assertHasTheseActionLogs(Model $item, array $statuses)
{
//note we have to do a 'reorder()' here because there is an implicit "order_by created_at" baked in to the relationship
Assert::assertEquals($statuses, $item->assetlog()->reorder('id')->pluck('action_type')->toArray(), "Failed asserting that action logs match");
}
}