utest
utest copied to clipboard
TestSuite that extends from class is silently ignored.
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}
}
}