| Total Complexity | 4 | 
| Total Lines | 34 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 8 | class UngenerateFilesTest extends TestCase | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * @var mixed | ||
| 12 | */ | ||
| 13 | private PathResolver $pathResolver; | ||
| 14 | |||
| 15 | private array $filesToGenerate = ['Controller', 'Repository', 'Model', 'Request', 'Resource', 'Collection', 'Policy']; | ||
| 16 | |||
| 17 | protected string $modelName = 'Test'; | ||
| 18 | protected string $userPath = 'Tests'; | ||
| 19 | |||
| 20 | /** | ||
| 21 | * @param string $dataName | ||
| 22 | */ | ||
| 23 | public function __construct(?string $name = null, array $data = [], $dataName = '') | ||
| 24 |     { | ||
| 25 | parent::__construct($name, $data, $dataName); | ||
| 26 | } | ||
| 27 | |||
| 28 | public function setUp(): void | ||
| 29 |     { | ||
| 30 | parent::setUp(); | ||
| 31 |         $this->pathResolver = new PathResolver($this->modelName, $this->userPath, config('repository.base_path')); | ||
| 32 | } | ||
| 33 | |||
| 34 | public function test_ungenerate() | ||
| 42 | } | ||
| 43 | } | ||
| 44 | } | ||
| 45 |