Intégration reservations et mock lavage

This commit is contained in:
bastien
2026-07-03 19:01:49 +02:00
parent b2443b654c
commit 55a558b536
16 changed files with 346 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace Tests\Unit;
use App\Models\MachineStatusHistory;
use Tests\TestCase;
class MachineStatusHistoryTest extends TestCase
{
public function test_uses_singular_history_table_name(): void
{
$this->assertSame('machine_status_history', (new MachineStatusHistory)->getTable());
}
}