1 | <?php |
||
18 | class BestItKitchensinkExtensionTest extends TestCase |
||
19 | { |
||
20 | use ContainerProviderTrait; |
||
21 | |||
22 | /** |
||
23 | * The used prefix in the bundle. |
||
24 | * @var string |
||
25 | */ |
||
26 | const BUNDLE_PREFIX = 'best_it_kitchensink'; |
||
27 | |||
28 | /** |
||
29 | * Returns some rules for the config value tests. |
||
30 | * @return array |
||
31 | */ |
||
32 | public function getConfigValueAssertions(): array |
||
40 | |||
41 | /** |
||
42 | * Checks the config value. |
||
43 | * @dataProvider getConfigValueAssertions |
||
44 | * @param string $key |
||
45 | */ |
||
46 | public function testConfigValue(string $key) |
||
63 | |||
64 | /** |
||
65 | * Checks if the data provider is loaded. |
||
66 | * @return void |
||
67 | */ |
||
68 | public function testDataProviderInstance() |
||
75 | |||
76 | /** |
||
77 | * Checks the default value of the template. |
||
78 | * @covers BestItKitchensinkExtension::load() |
||
79 | * @covers Configuration::getConfigTreeBuilder() |
||
80 | * @return void |
||
81 | */ |
||
82 | public function testTemplateDefaultValue() |
||
93 | } |
||
94 |