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

18 lines
316 B
PHP

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