| 1 | <?php |
||
| 22 | class ConfigurationTest extends \PHPUnit_Framework_TestCase |
||
| 23 | { |
||
| 24 | private static $defaultConfig = [ |
||
| 25 | 'parameters' => [ |
||
| 26 | 'filter' => 'filter', |
||
| 27 | 'search_filter' => 'where', |
||
| 28 | 'order_filter' => 'order', |
||
| 29 | ], |
||
| 30 | ]; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @cover ::getConfigTreeBuilder |
||
| 34 | */ |
||
| 35 | public function testDefaultConfig() |
||
| 50 | } |
||
| 51 |