I'd like to know how to run my test suite in Gradle twice, with different values set for a system property. Right now I can set a system property using e.g.:
test {
systemProperty "org.d2ab.sequence.strict", "true"
}
But how can I set the property to false and run the test suite again?