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.
|
- <?php
-
- namespace Tests\Unit\Repositories;
-
- use App\Codes\UserRole;
- use App\Repositories\LoginUserRepository;
- use App\Repositories\QRServiceParkingGroupRepository;
- use Tests\TestCase;
-
- /**
- * @group Repository
- */
- class QRServiceParkingGroupRepositoryTest extends TestCase
- {
-
- public function test_get_all(): void
- {
- $repository = new QRServiceParkingGroupRepository();
- $repository->get([]);
- $this->assertTrue(true);
- }
- }
|