Hello,
New to Gradle forums, Gradle and Test Suites but trying to use. I have been through the following article, and seems to be all the information for Test Suites.
I have the general basic set up following the format:
testing {
suites {
configureEach {
useJUnitJupiter()
}
test {
testType = TestSuiteType.UNIT_TEST
}
integration(JvmTestSuite) {
testType = TestSuiteType.INTEGRATION_TEST
dependencies {
implementation project()
}
sources {
java {
srcDirs = ["src/integration/java"]
}
resources {
srcDirs = ["src/integration/resources"]
}
}
targets {
all {
testTask.configure {
shouldRunAfter(test)
}
}
}
}
}
}
I was looking to get test results output to the console, just for visibility of the test run, even if they pass. So it actually looks like something is happening.
Found a few articles that had examples like:
test {
testLogging {
events = "PASSED, FAILED, etc"
}
}
but nothing within the context of test suites. Seems weird there is not some flag to just say display test results. Is there anything that can be done to get this information when using test suites.
Thanks you,
Ryan