. // }}} namespace App\Tests\Util\Notification; use App\Entity\Actor; use App\Util\Notification\Notification; use Jchook\AssertThrows\AssertThrows; use PHPUnit\Framework\TestCase; class NotificationTest extends TestCase { use AssertThrows; public function testNotificationBitmap() { static::assertTrue((new Notification(Notification::DM, new Actor())) instanceof Notification); } }