| 1 | <?php |
||
| 3 | class BlogFunctionalTest extends FunctionalTest |
||
|
|
|||
| 4 | { |
||
| 5 | protected static $fixture_file = 'BlogFunctionalTest.yml'; |
||
| 6 | |||
| 7 | protected static $use_draft_site = true; |
||
| 8 | |||
| 9 | public function setUp() |
||
| 17 | |||
| 18 | public function testBlogWithMultibyteUrl() |
||
| 24 | |||
| 25 | public function testMemberProfileWithMultibyteUrlAndName() |
||
| 32 | |||
| 33 | public function testMemberProfileWithMultibyteUrlAndEnglishName() |
||
| 40 | } |
||
| 41 |
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.