黑马程序员技术交流社区

标题: Junit Test 云计算01 [打印本页]

作者: tfy    时间: 2012-12-16 22:44
标题: Junit Test 云计算01
package com.itheima.day01.junit.test;


import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;

public class UserTestTest2 {

        @BeforeClass
        public static void setUpBeforeClass() throws Exception {
                System.out.println("@BeforeClass");
        }

        @AfterClass
        public static void tearDownAfterClass() throws Exception {
                System.out.println("@AfterClass");
        }

        @Before
        public void setUp() throws Exception {
                System.out.println("@Before");
        }

        @After
        public void tearDown() throws Exception {
                System.out.println("@After");
        }

}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2