1 | <?php |
||
5 | class EventTest extends \PHPUnit_Framework_TestCase |
||
|
|||
6 | { |
||
7 | /** |
||
8 | * @test |
||
9 | */ |
||
10 | function it_can_compile_the_command() |
||
16 | |||
17 | /** |
||
18 | * @test |
||
19 | */ |
||
20 | function it_can_switch_user() |
||
27 | |||
28 | /** |
||
29 | * @test |
||
30 | */ |
||
31 | function it_can_switch_directory() |
||
38 | |||
39 | /** |
||
40 | * @test |
||
41 | */ |
||
42 | function it_can_append_output() |
||
49 | |||
50 | /** |
||
51 | * @test |
||
52 | */ |
||
53 | function it_can_overwrite_output() |
||
60 | |||
61 | /** |
||
62 | * @test |
||
63 | */ |
||
64 | function it_can_run_every_minute() |
||
71 | |||
72 | /** |
||
73 | * @test |
||
74 | */ |
||
75 | function it_can_run_n_minutes() |
||
82 | |||
83 | /** |
||
84 | * @test |
||
85 | */ |
||
86 | function it_can_run_hourly() |
||
93 | |||
94 | /** |
||
95 | * @test |
||
96 | */ |
||
97 | function it_can_run_on_every_hour() |
||
104 | |||
105 | /** |
||
106 | * @test |
||
107 | */ |
||
108 | function it_can_run_daily() |
||
115 | |||
116 | /** |
||
117 | * @test |
||
118 | */ |
||
119 | function it_can_run_daily_at_a_specific_time() |
||
128 | |||
129 | /** |
||
130 | * @test |
||
131 | */ |
||
132 | function it_can_run_on_specific_days() |
||
142 | |||
143 | /** |
||
144 | * @test |
||
145 | */ |
||
146 | function it_can_run_on_weekdays_only() |
||
153 | |||
154 | /** |
||
155 | * @test |
||
156 | */ |
||
157 | function it_can_run_weekly() |
||
164 | |||
165 | /** |
||
166 | * @test |
||
167 | */ |
||
168 | function it_can_run_monthly() |
||
175 | |||
176 | /** |
||
177 | * @test |
||
178 | */ |
||
179 | function it_can_run_quarterly() |
||
186 | |||
187 | /** |
||
188 | * @test |
||
189 | */ |
||
190 | function it_can_run_yearly() |
||
197 | |||
198 | /** |
||
199 | * @test |
||
200 | */ |
||
201 | function it_allows_for_filtering() |
||
225 | |||
226 | /** |
||
227 | * @group fix |
||
228 | */ |
||
229 | function it_can_prevent_overlapping() |
||
236 | } |
||
237 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.