1 | <?php |
||
7 | class ModuleConfigurationTest extends \PHPUnit_Framework_TestCase |
||
|
|||
8 | { |
||
9 | |||
10 | |||
11 | /** |
||
12 | * @group Modules |
||
13 | * @group config |
||
14 | */ |
||
15 | public function testAllTheModulesGot11Players() |
||
28 | |||
29 | /** |
||
30 | * @group Roles |
||
31 | * @group config |
||
32 | */ |
||
33 | public function testCorrectDisplayModuleDescriptionRole() |
||
49 | |||
50 | /** |
||
51 | * @group rand |
||
52 | * |
||
53 | */ |
||
54 | public function testRandomizer() |
||
73 | |||
74 | /** |
||
75 | * @group randFiller |
||
76 | * |
||
77 | */ |
||
78 | public function testRandomFiller() |
||
88 | |||
89 | } |
||
90 |
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.