Files
spring-modulith/spring-modulith-integration-test/src/test/java/com/acme/myproject/moduleA/ApplicationModuleTestIntegrationTests.java
Oliver Drotbohm 822febd00e 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.
2023-03-27 17:56:04 +02:00

40 lines
1.1 KiB
Java

/*
* 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() {}
}
}