Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
9 | class SearchPageControllerTest extends FunctionalTest |
||
10 | { |
||
11 | protected static $fixture_file = [ |
||
12 | 'tests/fixtures/pages.yml', |
||
13 | 'tests/fixtures/sitetree.yml', |
||
14 | 'tests/fixtures/flickrphotos.yml' |
||
15 | ]; |
||
16 | |||
17 | protected static $extra_dataobjects = [ |
||
18 | FlickrPhoto::class, |
||
19 | ]; |
||
20 | |||
21 | public function setUp(): void |
||
22 | { |
||
23 | // TODO: Change the autogenerated stub |
||
24 | parent::setUp(); |
||
25 | } |
||
26 | |||
27 | |||
28 | public function testEmptySearchNoResults(): void |
||
29 | { |
||
30 | $this->markTestSkipped('@todo'); |
||
31 | } |
||
32 | |||
33 | |||
34 | public function testEmptySearchShowResults(): void |
||
35 | { |
||
36 | $this->markTestSkipped('@todo'); |
||
37 | } |
||
38 | |||
39 | |||
40 | public function testSearch(): void |
||
48 | } |
||
49 | } |
||
50 |