Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class DatabaseTest extends TestCase |
||
8 | { |
||
9 | protected $storageMock; |
||
10 | protected $processHandlerMock; |
||
11 | protected $database; |
||
12 | |||
13 | /** |
||
14 | * @environment-setup useMySQlConnection |
||
15 | */ |
||
16 | public function setUp(): void |
||
17 | { |
||
18 | parent::setUp(); |
||
19 | $this->database = new Database(); |
||
20 | $this->database->buildDatabaseClass(); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @test |
||
25 | */ |
||
26 | public function testBuildDatabaseClassMySQL() |
||
29 | } |
||
30 | } |
||
31 |