use Cspray\Labrador\AsyncUnit\TestCase;
use Cspray\Labrador\AsyncUnit\TestSuite;
use Cspray\Labrador\AsyncUnit\Attribute\Test;
use Cspray\Labrador\AsyncUnit\Attribute\DefaultTestSuite;
use Cspray\Labrador\AsyncUnit\Attribute\Disabled;
class MyTestSuite extends TestSuite {}
class FirstTestCase extends TestCase {
public function checkSomething() {
// none of this matters because this is never executed
public function checkSomethingElse() {
// this doesn't matter either... it will never run!
public function anotherDisabledTest() {
// more stuff that won't ever run
class SecondTestCase extends TestCase {
public function checkSomething() {
// none of this matters because this is never executed
public function checkSomethingElse() {
// this doesn't matter either... it will never run!
public function anotherDisabledTest() {
// more stuff that won't ever run