GH-173 - Support for @ApplicationModuleTest in JUnit 5 nested test classes.

We now use Spring Test Context's TestContextAnnotationUtils to lookup the @ApplicationModuleTest annotation to eventually bootstrap an ApplicationModules instance. That ensures that we find the annotation on JUnit 5's @Nested classes.
This commit is contained in:
Oliver Drotbohm
2023-03-27 17:51:15 +02:00
parent 281da55eac
commit 822febd00e
2 changed files with 42 additions and 3 deletions

View File

@@ -0,0 +1,39 @@
/*
* Copyright 2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.acme.myproject.moduleA;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.springframework.modulith.test.ApplicationModuleTest;
/**
* Integration tests for {@link ApplicationModuleTest}.
*
* @author Oliver Drotbohm
*/
@ApplicationModuleTest(verifyAutomatically = false)
class ApplicationModuleTestIntegrationTests {
@Test // GH-173
void bootstrapsFirstLevelTestMethod() {}
@Nested
class SomeNestedClass {
@Test // GH-173
void bootstrapsSecondLevelMestMethod() {}
}
}