I think I'm missing something obvious, is there a way to easily receive result of test run?
I'm running scalatest with simple run(new my.TestClass)
Is there any way to get the result of the test back? Or some way to run code after test failure?
Only way I found in scaladoc is running the tests with Suite.run()
which returns Status, but it also needs Args, and I haven't found any example of what Args should I use.