TestA.php 366 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Tests\Services\Bbb;
  3. use PHPUnit\Framework\TestCase;
  4. class TestA extends TestCase
  5. {
  6. /** @var CacheService $service */
  7. public $service;
  8. public function setUp(): void
  9. {
  10. parent::setUp();
  11. $this->cacheService = app('CacheService');
  12. }
  13. public function testExample()
  14. {
  15. $this->assertTrue(true);
  16. }
  17. }