An error occurred while loading the file. Please try again.
-
1054429416 authored7894be03
package com.hello.testcase;
import org.junit.*;
import org.junit.internal.runners.JUnit38ClassRunner;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.junit.runners.Parameterized;
import org.junit.runners.Suite;
public class JunitDemo1Test {
@BeforeClass
public static void beforeClass() {
System.out.println("beforeclass");
}
@Before
public void before1(){
System.out.println("before");
}
@After
public void after1(){
System.out.println("after");
}
@AfterClass
public static void afterClass() {
System.out.println("afterClass");
}
@Test
public void testfun1() {
System.out.println("test fun1");
}
@Test
public void testfun2() {
System.out.println("test fun2");
}
@Test
@Ignore
public void testfun3() {
System.out.println("test fun3");
}
}