From 61862392876a968a1af5e196da1491ac02bfb36e Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 26 Sep 2019 15:02:30 +0200 Subject: [PATCH] Remove obsolete references to specific release versions in testing docs --- .../test/annotation/DirtiesContext.java | 6 +- .../test/annotation/IfProfileValue.java | 4 +- .../ProfileValueSourceConfiguration.java | 4 +- .../test/annotation/Repeat.java | 4 +- .../test/annotation/Timed.java | 4 +- .../test/context/ActiveProfiles.java | 6 +- .../test/context/ContextHierarchy.java | 6 +- .../test/context/TestExecutionListeners.java | 6 +- .../context/transaction/AfterTransaction.java | 6 +- .../transaction/BeforeTransaction.java | 6 +- .../test/context/web/WebAppConfiguration.java | 6 +- src/docs/asciidoc/testing.adoc | 133 +++++++++--------- 12 files changed, 94 insertions(+), 97 deletions(-) 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 4457b908ae..78f884b0b9 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-2016 the original author or authors. + * Copyright 2002-2019 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. @@ -40,8 +40,8 @@ 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}. * - *

As of Spring Framework 4.0, this annotation may be used as a - * meta-annotation to create custom composed annotations. + *

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

Supported Test Phases

*