File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
spring-test/src/test/java/org/springframework/test/context/aot Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -107,12 +107,16 @@ void endToEndTests() {
107
107
@ Test
108
108
void endToEndTestsForEntireSpringTestModule () {
109
109
// AOT BUILD-TIME: CLASSPATH SCANNING
110
- List <Class <?>> testClasses = createTestClassScanner ()
110
+ List <Class <?>> testClasses =
111
+ // FYI: you can limit execution to a particular set of test classes as follows.
112
+ // List.of(DirtiesContextTransactionalTestNGSpringContextTests.class, ...);
113
+ createTestClassScanner ()
111
114
.scan ()
112
- // FYI: you can limit execution to a particular package as follows.
115
+ // FYI: you can limit execution to a particular package and its subpackages as follows.
113
116
// .scan("org.springframework.test.context.junit.jupiter")
114
117
.toList ();
115
118
119
+
116
120
// AOT BUILD-TIME: PROCESSING
117
121
InMemoryGeneratedFiles generatedFiles = new InMemoryGeneratedFiles ();
118
122
TestContextAotGenerator generator = new TestContextAotGenerator (generatedFiles );
You can’t perform that action at this time.
0 commit comments