在开发过程中 我们往往要对我们写的每个方法进行测试 以保证每个方法的正确性 如果是在main方法中测试 这
样会过于麻烦 而且还破坏了原有代码的整洁,而且测试多个方法时会很麻烦,可能要不断的去写注释。但是
Junit可以让我们避免上述麻烦。
重点 1 引入junit 相关架包
Example
package com.gui.test;
public class Person {
}
Junit测试类
package com.gui.test;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class TestPerson {
//
//
//
//
}