Tests not run in Play Framework 2.0

In my Play project, I have junit tests. Earlier this week, I was able to run a test from the game console using

test

teams. I could see successes and failures.

Unfortunately, when I tried to run the tests today, I have:

[info] No tests to run for test:test
[success] Total time: 3 s, completed Apr 19, 2012 5:00:00 PM

message.

Tests are in the test folder of my project. What could be the problem?

+3
source share
1 answer

Are your tests in the root directory of the test folder? As far as I know, they will not work if they are in test / test / sometest.scala.

0
source

All Articles