1 | <?php |
||
21 | final class ChannelFixtureTest extends \PHPUnit_Framework_TestCase |
||
22 | { |
||
23 | use ConfigurationTestCaseTrait; |
||
24 | |||
25 | /** |
||
26 | * @test |
||
27 | */ |
||
28 | public function channels_are_optional(): void |
||
32 | |||
33 | /** |
||
34 | * @test |
||
35 | */ |
||
36 | public function channels_can_be_generated_randomly(): void |
||
41 | |||
42 | /** |
||
43 | * @test |
||
44 | */ |
||
45 | public function channel_code_is_optional(): void |
||
49 | |||
50 | /** |
||
51 | * @test |
||
52 | */ |
||
53 | public function channel_hostname_is_optional(): void |
||
57 | |||
58 | /** |
||
59 | * @test |
||
60 | */ |
||
61 | public function channel_color_is_optional(): void |
||
65 | |||
66 | /** |
||
67 | * @test |
||
68 | */ |
||
69 | public function channel_may_be_toggled(): void |
||
73 | |||
74 | /** |
||
75 | * @test |
||
76 | */ |
||
77 | public function channel_locales_are_optional(): void |
||
81 | |||
82 | /** |
||
83 | * @test |
||
84 | */ |
||
85 | public function channel_currencies_are_optional(): void |
||
89 | |||
90 | /** |
||
91 | * @test |
||
92 | */ |
||
93 | public function channel_contact_email_is_optional(): void |
||
100 | |||
101 | /** |
||
102 | * {@inheritdoc} |
||
103 | */ |
||
104 | protected function getConfiguration(): ChannelFixture |
||
111 | } |
||
112 |