19 declare(strict_types=1);
27 protected function setUp(): void
45 $this->assertSame(1, $box->getBoxNr());
46 $this->assertSame(2, $box->getUserId());
47 $this->assertSame(3, $box->getGloId());
48 $this->assertSame(
"2024-01-01 01:00:00", $box->getLastAccess());
59 $this->assertSame(1, $box->getBoxNr());
60 $this->assertSame(2, $box->getUserId());
61 $this->assertSame(3, $box->getGloId());
62 $this->assertNull($box->getLastAccess());
testPropertiesWithNoLastAccess()