utest icon indicating copy to clipboard operation
utest copied to clipboard

TestSuite that extends from class is silently ignored.

Open sdomeshok opened this issue 6 years ago • 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}
  }
}

sdomeshok avatar Aug 16 '18 04:08 sdomeshok