1 | <?php |
||
7 | class StringEnsuranceTest extends TestCase |
||
|
|||
8 | { |
||
9 | public function testIsEqualTo() |
||
13 | |||
14 | public function testIsNotEqualTo() |
||
18 | |||
19 | public function testMatch() |
||
23 | |||
24 | public function testHasLengthOf() |
||
28 | |||
29 | public function testIsShorterThan() |
||
33 | |||
34 | public function testIsShorterOrEqualTo() |
||
38 | |||
39 | public function testIsLongerThan() |
||
43 | |||
44 | public function testIsLongerorEqualTo() |
||
49 | |||
50 | public function testBeginsWith() |
||
58 | |||
59 | public function testEndsWith() |
||
67 | |||
68 | public function testIsCallable() |
||
76 | |||
77 | public function testIsClass() |
||
85 | } |
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.