IOP-Patho/vendor/codeception/base/tests/data/SimpleNamespacedTest.php

30 lines
463 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?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;
}
}
}