diff --git a/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java b/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java index 9441c9133d..bca018aa6b 100644 --- a/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java +++ b/spring-test/src/main/java/org/springframework/test/annotation/DirtiesContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2020 the original author or authors. + * Copyright 2002-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. @@ -31,8 +31,8 @@ import java.lang.annotation.Target; * *

Use this annotation if a test has modified the context — for * example, by modifying the state of a singleton bean, modifying the state - * of an embedded database, etc. Subsequent tests that request the same - * context will be supplied a new context. + * of an embedded database, etc. Subsequent tests that request the same context + * will be supplied a new context. * *

{@code @DirtiesContext} may be used as a class-level and method-level * annotation within the same class or class hierarchy. In such scenarios, the @@ -40,14 +40,6 @@ import java.lang.annotation.Target; * after any such annotated method as well as before or after the current test * class, depending on the configured {@link #methodMode} and {@link #classMode}. * - *

This annotation may be used as a meta-annotation to create custom - * composed annotations. - * - *

As of Spring Framework 5.3, this annotation will be inherited from an - * enclosing test class by default. See - * {@link org.springframework.test.context.NestedTestConfiguration @NestedTestConfiguration} - * for details. - * *

Supported Test Phases

* * *

{@code BEFORE_*} modes are supported by the - * {@link org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener DirtiesContextBeforeModesTestExecutionListener}; - * {@code AFTER_*} modes are supported by the - * {@link org.springframework.test.context.support.DirtiesContextTestExecutionListener DirtiesContextTestExecutionListener}. + * {@link org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener + * DirtiesContextBeforeModesTestExecutionListener}; {@code AFTER_*} modes are supported by the + * {@link org.springframework.test.context.support.DirtiesContextTestExecutionListener + * DirtiesContextTestExecutionListener}. + * + *

This annotation may be used as a meta-annotation to create custom + * composed annotations. + * + *

As of Spring Framework 5.3, this annotation will be inherited from an + * enclosing test class by default. See + * {@link org.springframework.test.context.NestedTestConfiguration @NestedTestConfiguration} + * for details. * * @author Sam Brannen * @author Rod Johnson