自上一篇博客起,我们现在有了测试类TestCalcuate,默认是这样的
package junit.demo;
import static org.junit.Assert.*;
import org.junit.Test;
public class TestCalcuate {
@Test
public void testAdd() {
fail("Not yet implemented");
}
@Test
public void testSub() {
fail("Not yet implemented");
.....