forked from junit-team/junit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNested.java
More file actions
57 lines (52 loc) · 1.83 KB
/
Nested.java
File metadata and controls
57 lines (52 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright 2015-2025 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.api;
import static org.apiguardian.api.API.Status.STABLE;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.apiguardian.api.API;
import org.junit.jupiter.api.TestInstance.Lifecycle;
/**
* {@code @Nested} is used to signal that the annotated class is a nested,
* non-static test class (i.e., an <em>inner class</em>) that can share
* setup and state with an instance of its {@linkplain Class#getEnclosingClass()
* enclosing class}. The enclosing class may be a top-level test class or
* another {@code @Nested} test class, and nesting can be arbitrarily deep.
*
* <p>{@code @Nested} test classes may be ordered via
* {@link TestClassOrder @TestClassOrder} or a global {@link ClassOrderer}.
*
* <p>{@code @Nested} may be combined with {@link ClassTemplate @ClassTemplate}.
*
* <h2>Test Instance Lifecycle</h2>
*
* <ul>
* <li>A {@code @Nested} test class <em>can</em> be configured with its own
* {@link Lifecycle} mode which may differ from that of an enclosing test
* class.</li>
* <li>A {@code @Nested} test class <em>cannot</em> change the {@link Lifecycle}
* mode of an enclosing test class.</li>
* </ul>
*
* @since 5.0
* @see ClassTemplate
* @see Test
* @see TestInstance
* @see TestClassOrder
*/
@API(status = STABLE, since = "5.0")
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Nested {
}