File tree Expand file tree Collapse file tree 12 files changed +94
-97
lines changed
spring-test/src/main/java/org/springframework/test Expand file tree Collapse file tree 12 files changed +94
-97
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
40
40
* after any such annotated method as well as before or after the current test
41
41
* class, depending on the configured {@link #methodMode} and {@link #classMode}.
42
42
*
43
- * <p>As of Spring Framework 4.0, this annotation may be used as a
44
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
43
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
44
+ * <em>composed annotations</em>.
45
45
*
46
46
* <h3>Supported Test Phases</h3>
47
47
* <ul>
Original file line number Diff line number Diff line change 79
79
* {@code @IfProfileValue} is used to enable or disable tests.
80
80
*
81
81
* <h3>Meta-annotation Support</h3>
82
- * <p>As of Spring Framework 4.0, this annotation may be used as a
83
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
82
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
83
+ * <em>composed annotations</em>.
84
84
*
85
85
* @author Rod Johnson
86
86
* @author Sam Brannen
Original file line number Diff line number Diff line change 29
29
* to use when retrieving <em>profile values</em> configured via
30
30
* {@link IfProfileValue @IfProfileValue}.
31
31
*
32
- * <p>As of Spring Framework 4.0, this annotation may be used as a
33
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
32
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
33
+ * <em>composed annotations</em>.
34
34
*
35
35
* @author Sam Brannen
36
36
* @since 2.5
Original file line number Diff line number Diff line change 30
30
* test method itself as well as any <em>set up</em> or <em>tear down</em> of
31
31
* the test fixture.
32
32
*
33
- * <p>As of Spring Framework 4.0, this annotation may be used as a
34
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
33
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
34
+ * <em>composed annotations</em>.
35
35
*
36
36
* @author Rod Johnson
37
37
* @author Sam Brannen
Original file line number Diff line number Diff line change 33
33
* any {@linkplain Repeat repetitions} of the test, and any <em>set up</em> or
34
34
* <em>tear down</em> of the test fixture.
35
35
*
36
- * <p>As of Spring Framework 4.0, this annotation may be used as a
37
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
36
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
37
+ * <em>composed annotations</em>.
38
38
*
39
39
* @author Rod Johnson
40
40
* @author Sam Brannen
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
31
31
* an {@link org.springframework.context.ApplicationContext ApplicationContext}
32
32
* for test classes.
33
33
*
34
- * <p>As of Spring Framework 4.0, this annotation may be used as a
35
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
34
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
35
+ * <em>composed annotations</em>.
36
36
*
37
37
* @author Sam Brannen
38
38
* @since 3.1
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
131
131
* )
132
132
* public class ExtendedTests extends BaseTests {}</pre>
133
133
*
134
- * <p>As of Spring Framework 4.0, this annotation may be used as a
135
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
134
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
135
+ * <em>composed annotations</em>.
136
136
*
137
137
* @author Sam Brannen
138
138
* @since 3.2.2
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
33
33
* <p>Typically, {@code @TestExecutionListeners} will be used in conjunction
34
34
* with {@link ContextConfiguration @ContextConfiguration}.
35
35
*
36
- * <p>As of Spring Framework 4.0, this annotation may be used as a
37
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
36
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
37
+ * <em>composed annotations</em>.
38
38
*
39
39
* @author Sam Brannen
40
40
* @since 2.5
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
31
31
* <p>{@code @AfterTransaction} methods declared in superclasses or as interface
32
32
* default methods will be executed after those of the current test class.
33
33
*
34
- * <p>As of Spring Framework 4.0, this annotation may be used as a
35
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
34
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
35
+ * <em>composed annotations</em>.
36
36
*
37
37
* <p>As of Spring Framework 4.3, {@code @AfterTransaction} may also be
38
38
* declared on Java 8 based interface default methods.
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
31
31
* <p>{@code @BeforeTransaction} methods declared in superclasses or as interface
32
32
* default methods will be executed before those of the current test class.
33
33
*
34
- * <p>As of Spring Framework 4.0, this annotation may be used as a
35
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
34
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
35
+ * <em>composed annotations</em>.
36
36
*
37
37
* <p>As of Spring Framework 4.3, {@code @BeforeTransaction} may also be
38
38
* declared on Java 8 based interface default methods.
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
38
38
* {@link org.springframework.test.context.ContextConfiguration @ContextConfiguration},
39
39
* either within a single test class or within a test class hierarchy.
40
40
*
41
- * <p>As of Spring Framework 4.0, this annotation may be used as a
42
- * <em>meta-annotation</em> to create custom <em> composed annotations</em>.
41
+ * <p>This annotation may be used as a <em>meta-annotation</em> to create custom
42
+ * <em>composed annotations</em>.
43
43
*
44
44
* @author Sam Brannen
45
45
* @since 3.2
You can’t perform that action at this time.
0 commit comments