init
This commit is contained in:
29
vendor/codeception/base/tests/data/SimpleNamespacedTest.php
vendored
Normal file
29
vendor/codeception/base/tests/data/SimpleNamespacedTest.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user