admin = UserFactory::asAdmin()->withTokens()->create(); IntervalFactory::createMany(self::SCREENSHOTS_AMOUNT); } public function test_count(): void { $response = $this->actingAs($this->admin)->getJson(self::URI); $response->assertOk(); $response->assertJson(['total' => TimeInterval::count()]); } public function test_unauthorized(): void { $response = $this->getJson(self::URI); $response->assertUnauthorized(); } }