Files
animethemes-server/tests/Unit/Models/Document/PageTest.php
T
2025-07-29 23:31:12 -03:00

18 lines
319 B
PHP

<?php
declare(strict_types=1);
use App\Models\Document\Page;
test('nameable', function () {
$page = Page::factory()->createOne();
$this->assertIsString($page->getName());
});
test('has subtitle', function () {
$page = Page::factory()->createOne();
$this->assertIsString($page->getSubtitle());
});