com-lihaoyi/utest

TestSuite that extends from class is silently ignored.

sdomeshok opened this issue · 0 comments

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}
  }
}