As an alternative to prefixing your test method names with test, you can use the @test annotation in a method's DocBlock to mark it as a test method.
test
@test
/** @test */ public function something() { $this->assertTrue(true); }
← Assertions The configuration file →