123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Also test multiple namespaces/classes per single file.
- */
- namespace SimpleA {
- class SimpleTest extends \Codeception\Test\Unit
- {
- public function testFoo() {
- return true;
- }
- public function testBar() {
- return true;
- }
- }
- }
- namespace SimpleB {
- class SimpleTest extends \Codeception\Test\Unit
- {
- public function testBaz() {
- return true;
- }
- }
- }
|