When executing \'play test\', is there a way to pass in system properties to be used at test cases?
String testDB = System.getProperties().getProperty(\"testDB\
Try play run -DtestDB=localdb --%test
play run -DtestDB=localdb --%test
I found that at the bottom of http://www.playframework.org/documentation/1.2.4/ids where it states that play test is equivalent to play run --%test.
play test
play run --%test
Try play -DtestDB=localdb test
play -DtestDB=localdb test
The system property needs to be before the command.