I need to define a system property for my JUnit tests. I\'ve tried various steps to pass the name/value pair into gradle. (I\'ve tried Milestone-3 and 4). None of these app
You can also define individual properties like this:
test { systemProperty "file", "test.story" }
(From this answer)