JUNIT在这个程序中做什么或测试什么?

时间:2014-02-21 14:59:19

标签: java junit

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
        }
}

1 个答案:

答案 0 :(得分:2)

这一行:

assertTrue(baos.toString().contains("google"));

检查字符串google是否出现在上面一行提供的URL中。我建议通过jUnit tutorial