1 | <?php |
||
22 | final class TaxonFixtureTest extends \PHPUnit_Framework_TestCase |
||
23 | { |
||
24 | use ConfigurationTestCaseTrait; |
||
25 | |||
26 | /** |
||
27 | * @test |
||
28 | */ |
||
29 | public function taxons_are_optional() |
||
33 | |||
34 | /** |
||
35 | * @test |
||
36 | */ |
||
37 | public function taxons_can_be_generated_randomly() |
||
42 | |||
43 | /** |
||
44 | * @test |
||
45 | */ |
||
46 | public function taxon_code_is_optional() |
||
50 | |||
51 | /** |
||
52 | * @test |
||
53 | */ |
||
54 | public function taxon_slug_is_optional() |
||
58 | |||
59 | /** |
||
60 | * @test |
||
61 | */ |
||
62 | public function taxon_children_are_optional() |
||
66 | |||
67 | /** |
||
68 | * @test |
||
69 | */ |
||
70 | public function taxon_children_may_contain_nested_array() |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | protected function getConfiguration() |
||
89 | } |
||
90 |