SimpleNamespacedTest.php 463 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Also test multiple namespaces/classes per single file.
  4. */
  5. namespace SimpleA {
  6. class SimpleTest extends \Codeception\Test\Unit
  7. {
  8. public function testFoo() {
  9. return true;
  10. }
  11. public function testBar() {
  12. return true;
  13. }
  14. }
  15. }
  16. namespace SimpleB {
  17. class SimpleTest extends \Codeception\Test\Unit
  18. {
  19. public function testBaz() {
  20. return true;
  21. }
  22. }
  23. }