Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class ElementSlideshowTest extends SapphireTest |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected static $fixture_file = '../fixtures.yml'; |
||
16 | |||
17 | /** |
||
18 | * Tests getCMSFields(). |
||
19 | */ |
||
20 | public function testGetCMSFields() |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * |
||
28 | */ |
||
29 | public function testGetSummary() |
||
30 | { |
||
31 | $object = $this->objFromFixture(ElementSlideshow::class, 'one'); |
||
32 | $result = 'A Slide Image'; |
||
33 | $this->assertEquals($object->getSummary(), $result); |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * |
||
38 | */ |
||
39 | public function testGetType() |
||
43 | } |
||
44 | } |
||
45 |