File tree 2 files changed +10
-0
lines changed
junit-jupiter-api/src/main/java/org/junit/jupiter/api
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 45
45
* {@code @AfterAll} methods from superclasses will be executed after
46
46
* {@code @AfterAll} methods in subclasses.
47
47
*
48
+ * <p>Similarly, {@code @AfterAll} methods declared in an interface are
49
+ * inherited as long as they are not <em>hidden</em> or <em>overridden</em>,
50
+ * and {@code @AfterAll} methods from an interface will be executed after
51
+ * {@code @AfterAll} methods in the class that implements the interface.
52
+ *
48
53
* <h3>Composition</h3>
49
54
*
50
55
* <p>{@code @AfterAll} may be used as a meta-annotation in order to create
Original file line number Diff line number Diff line change 45
45
* {@code @BeforeAll} methods from superclasses will be executed before
46
46
* {@code @BeforeAll} methods in subclasses.
47
47
*
48
+ * <p>Similarly, {@code @BeforeAll} methods declared in an interface are
49
+ * inherited as long as they are not <em>hidden</em> or <em>overridden</em>,
50
+ * and {@code @BeforeAll} methods from an interface will be executed before
51
+ * {@code @BeforeAll} methods in the class that implements the interface.
52
+ *
48
53
* <h3>Composition</h3>
49
54
*
50
55
* <p>{@code @BeforeAll} may be used as a meta-annotation in order to create
You can’t perform that action at this time.
0 commit comments