We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c019ee5 commit dfbce8fCopy full SHA for dfbce8f
junit-intro/test/TestClassTest.java
@@ -16,25 +16,23 @@ public static void tearDownAfterClass() {
16
17
@Before
18
public void setUp() {
19
-
+ System.out.println("Executed before");
20
}
21
22
@After
23
public void tearDown() {
24
+ System.out.println("Executed after");
25
26
27
@Test
28
public void test1() {
29
+ System.out.println("Test1");
30
31
32
33
public void test2() {
34
35
+ System.out.println("Test2");
36
37
38
39
40
0 commit comments