黑马程序员技术交流社区

标题: Assert断言云计算01day1为了不成被关怀对象啊 为了我的910元房租啊 还没交啊加油 [打印本页]

作者: tfy    时间: 2012-12-16 23:11
标题: Assert断言云计算01day1为了不成被关怀对象啊 为了我的910元房租啊 还没交啊加油
package com.itheima.day01.junit.test;

import org.junit.After;
import org.junit.Assert;
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(){
        Assert.assertNotNull("tfy对象是null",this.user);
        System.out.println("对象不为空!!");
        this.user.login();
}
@Test
public void testregister(){
       
        this.user.register();
}

@After
public void release(){
        this.user=null;
       
}

}

作者: 张海涛    时间: 2012-12-17 00:13
加油,付出就会有收获,很多人与你同行……




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