|
60 | 60 | * classes in JUnit Jupiter; however, there may be other testing frameworks with
|
61 | 61 | * support for nested test classes that could also make use of this annotation.
|
62 | 62 | *
|
| 63 | + * <h3>Supported Annotations</h3> |
| 64 | + * <p>The <em>Spring TestContext Framework</em> honors {@code @NestedTestConfiguration} |
| 65 | + * semantics for the following annotations. |
| 66 | + * <ul> |
| 67 | + * <li>{@link BootstrapWith @BootstrapWith}</li> |
| 68 | + * <li>{@link TestExecutionListeners @TestExecutionListeners}</li> |
| 69 | + * <li>{@link ContextConfiguration @ContextConfiguration}</li> |
| 70 | + * <li>{@link ContextHierarchy @ContextHierarchy}</li> |
| 71 | + * <li>{@link org.springframework.test.context.web.WebAppConfiguration @WebAppConfiguration}</li> |
| 72 | + * <li>{@link ActiveProfiles @ActiveProfiles}</li> |
| 73 | + * <li>{@link TestPropertySource @TestPropertySource}</li> |
| 74 | + * <li>{@link org.springframework.test.annotation.DirtiesContext @DirtiesContext}</li> |
| 75 | + * <li>{@link org.springframework.transaction.annotation.Transactional @Transactional}</li> |
| 76 | + * <li>{@link org.springframework.test.annotation.Rollback @Rollback}</li> |
| 77 | + * <li>{@link org.springframework.test.annotation.Commit @Commit}</li> |
| 78 | + * <li>{@link TestConstructor @TestConstructor}</li> |
| 79 | + * </ul> |
| 80 | + * |
63 | 81 | * @author Sam Brannen
|
64 | 82 | * @since 5.3
|
65 | 83 | * @see EnclosingConfiguration#INHERIT
|
66 | 84 | * @see EnclosingConfiguration#OVERRIDE
|
67 |
| - * @see ContextConfiguration @ContextConfiguration |
68 |
| - * @see ContextHierarchy @ContextHierarchy |
69 |
| - * @see ActiveProfiles @ActiveProfiles |
70 |
| - * @see TestPropertySource @TestPropertySource |
71 | 85 | */
|
72 | 86 | @Target(ElementType.TYPE)
|
73 | 87 | @Retention(RetentionPolicy.RUNTIME)
|
|
0 commit comments