You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 satır
454B

  1. <?php
  2. namespace Tests\Unit\Repositories;
  3. use App\Codes\UserRole;
  4. use App\Repositories\LoginUserRepository;
  5. use App\Repositories\QRServiceParkingGroupRepository;
  6. use Tests\TestCase;
  7. /**
  8. * @group Repository
  9. */
  10. class QRServiceParkingGroupRepositoryTest extends TestCase
  11. {
  12. public function test_get_all(): void
  13. {
  14. $repository = new QRServiceParkingGroupRepository();
  15. $repository->get([]);
  16. $this->assertTrue(true);
  17. }
  18. }