-
Hello! Thank you for a great product! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, you have a few options.
In the JUnit 5 and Spring Framework builds, we primarily do the former. Specifically, all of our "real" test classes match the pattern We actually include test classes matching the patterns |
Beta Was this translation helpful? Give feedback.
Yes, you have a few options.
EngineTestKit
.@Tag("my-tag")
, and exclude the "my-tag" tag from your build.In the JUnit 5 and Spring Framework builds, we primarily do the former.
Specifically, all of our "real" test classes match the pattern
*Tests
, and all of our "test cases" match the pattern*TestCase
. We therefore only run the*Tests
from our build.junit5/gradle/plugins/src/main/kotlin/junitbuild.testing-conventions.gradle.kts
Line 15 in 97d9c2e