A test-suite that is found in a `class` rather than an `object` is silently ignored by the test-runner. This is a fairly simple beginner mistake to make. ``` class MainTest extends TestSuite { val tests: Tests = Tests { "Basic test" - {1 ==> 1} } } ```