1 | <?php |
||
14 | class CollectionExtensionTest extends FunctionalTest |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected static $fixture_file = array( |
||
20 | 'fixtures.yml', |
||
21 | ); |
||
22 | |||
23 | /** |
||
24 | * @var bool |
||
25 | */ |
||
26 | protected static $disable_themes = true; |
||
27 | |||
28 | /** |
||
29 | * @var bool |
||
30 | */ |
||
31 | protected static $use_draft_site = false; |
||
32 | |||
33 | /** |
||
34 | * @var array |
||
35 | */ |
||
36 | protected static $extra_dataobjects = array( |
||
37 | TestCollection::class, |
||
38 | TestCollectionController::class, |
||
39 | TestCollectionObject::class, |
||
40 | ); |
||
41 | |||
42 | /** |
||
43 | * |
||
44 | */ |
||
45 | public function setUp() |
||
53 | |||
54 | /** |
||
55 | * |
||
56 | */ |
||
57 | public function logOut() |
||
62 | |||
63 | /** |
||
64 | * |
||
65 | */ |
||
66 | public function testGetCollection() |
||
75 | |||
76 | /** |
||
77 | * |
||
78 | */ |
||
79 | public function testGetManagedObject() |
||
85 | |||
86 | /** |
||
87 | * |
||
88 | */ |
||
89 | public function testGetPageSize() |
||
95 | |||
96 | /** |
||
97 | * |
||
98 | */ |
||
99 | public function testPaginatedList() |
||
105 | |||
106 | /** |
||
107 | * |
||
108 | */ |
||
109 | public function testGroupedList() |
||
115 | |||
116 | /** |
||
117 | * |
||
118 | */ |
||
119 | public function testCollectionSearchForm() |
||
125 | } |