Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ProxyDBExtensionTest extends SapphireTest |
||
11 | { |
||
12 | /** |
||
13 | * @var SilverStripe\ORM\Connect\Database |
||
|
|||
14 | */ |
||
15 | protected $conn; |
||
16 | |||
17 | public function setUp(): void |
||
18 | { |
||
19 | parent::setUp(); |
||
20 | $this->conn = DB::get_conn(); |
||
21 | DebugBar::initDebugBar(); |
||
22 | } |
||
23 | |||
24 | public function testQueriesAreCollected() |
||
31 | } |
||
32 | } |
||
33 |