LightOnTest.php 508 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Tests\Services\CacheShelfService;
  3. use App\Services\CacheShelfService;
  4. use Tests\TestCase;
  5. class LightOnTest extends testcase
  6. {
  7. /** @var CacheShelfService $service */
  8. protected $service;
  9. protected function setup(): void
  10. {
  11. $this->service = app(CacheShelfService::class);
  12. parent::setup(); // todo: change the autogenerated stub
  13. }
  14. protected function tearDown(): void
  15. {
  16. parent::tearDown(); // TODO: Change the autogenerated stub
  17. }
  18. }