JUnit在这个程序中做了什么或测试了什么?
public class TestFailure extends TestCase {
public static void test() throws MalformedURLException, IOException{
ByteArrayOutputStream baos = new ByteArrayOutputStream();
JavaSourceViewer.writeURL2Stream("http://www.google.de", baos);
assertTrue(baos.toString().contains("google")); //checks condition is true
}
}
答案 0 :(得分:2)
这一行:
assertTrue(baos.toString().contains("google"));
检查字符串google
是否出现在上面一行提供的URL中。我建议通过jUnit tutorial。