黑马程序员技术交流社区
标题:
junit Test云计算01day1
[打印本页]
作者:
tfy
时间:
2012-12-16 22:58
标题:
junit Test云计算01day1
package com.itheima.day01.junit.test;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import com.itheima.day01.beans.User;
public class UserTest {
private User user;
@Before
public void init(){
this.user=new User();
}
@Test
public void testLogin(){
this.user.login();
}
@Test
public void testregister(){
this.user.register();
}
@After
public void release(){
this.user=null;
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2