Test Suite test logging

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

What you found in the articles configures the task called test.
So you should be able to do the same within the testTask.configure { ... } I think.

Hey, thank you very much Björn!

I added the following testLogging as below to my configureEach block, and now getting the output :raised_hands:.

There is some allusion to the use of this block for test configuration here, but it doesn’t go into any detail, therefore you need to be familiar with gradle already, which is not ideal. But anyway, solved.

testing {
	suites {
		configureEach {
			useJUnitJupiter()
			targets {
				configureEach {
					testTask.configure {
						testLogging {
							events "FAILED", "PASSED", "SKIPPED"
						}
					}
				}
			}
		}
		test {
			testType = TestSuiteType.UNIT_TEST
		}
		integration(JvmTestSuite) {
...