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() |
||
50 | |||
51 | /** |
||
52 | * @group rand |
||
53 | * |
||
54 | */ |
||
55 | public function testRandomizer() |
||
70 | |||
71 | /** |
||
72 | * @group randFiller |
||
73 | * |
||
74 | */ |
||
75 | public function testRandomFiller() |
||
82 | |||
83 | } |
||
84 |
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.