Files

18 lines
384 B
PHP

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