NotificationServiceTest.php
1 <?php 2 3 namespace Tests\Services; 4 5 use App\Http\Services\NotificationService; 6 use Tests\TestCase; 7 8 class NotificationServiceTest extends TestCase 9 { 10 public function testSearchNotifications() 11 { 12 $this->actingAs($this->getAdminUser()); 13 $query = NotificationService::searchNotifications('', 'id', 'asc', []); 14 $this->assertInstanceOf(\Illuminate\Database\Query\Builder::class, $query); 15 } 16 }