Issue
With sbt build, Java Play, my tests are ignored when I type: sbt->compile->test. The message I get is:
[info] Passed: Total 0, Failed 0, Errors 0, Passed 0
although I have 26 tests.
Dependencies are these:
"org.mockito" % "mockito-all" % "1.9.5" % "test",
"org.hamcrest" % "hamcrest-all" % "1.3" % "test",
Solution
I had "testOptions in Test += Tests.Argument("junitxml", "console")" in build.sbt. That caused the tests to be ignored.
Answered By - Egle Nausedaite