admin = UserFactory::asAdmin()->withTokens()->create(); IntervalFactory::createMany(self::INTERVALS_AMOUNT); } public function test_list(): void { $response = $this->actingAs($this->admin)->getJson(self::URI); $response->assertOk(); $response->assertJson(TimeInterval::all()->toArray()); } public function test_unauthorized(): void { $response = $this->getJson(self::URI); $response->assertUnauthorized(); } }