Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class BlocksTest extends SapphireTest |
||
10 | { |
||
11 | /** |
||
12 | * Defines the fixture file to use for this test class |
||
13 | * @var string |
||
14 | */ |
||
15 | protected static $fixture_file = 'BlocksTest.yml'; |
||
16 | |||
17 | public function getDefaultBlock() |
||
18 | { |
||
19 | return $this->objFromFixture(Block::class, 'default'); |
||
20 | } |
||
21 | |||
22 | public function testBlocks() |
||
26 | } |
||
27 | } |
||
28 |