您的位置:软件测试 > 开源软件测试 > 开源单元测试工具 > junit
Junit测试时,如何截获到Console的输出
作者:网络转载 发布时间:[ 2015/10/15 14:27:39 ] 推荐标签:单元测试工具 软件测试工具

  RT:
  参考如下Junit 测试代码
  注释部分
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import static org.junit.Assert.*;
public class HelloWorldTest {
PrintStream console = null;          // 声明(为null):输出流 (字符设备) console
ByteArrayOutputStream bytes = null;  // 声明(为null):bytes 用于缓存console 重定向过来的字符流
HelloWorld hello;
@org.junit.Before
public void setUp() throws Exception {
hello = new HelloWorld();
bytes = new ByteArrayOutputStream();    // 分配空间
console = System.out;                   // 获取System.out 输出流的句柄
System.setOut(new PrintStream(bytes));  // 将原本输出到控制台Console的字符流 重定向 到 bytes
}
@org.junit.After
public void tearDown() throws Exception {
System.setOut(console);
}
@org.junit.Test
public void testResult() throws Exception {
hello.helloWorld();
String s = new String("Hello World! Hello Java! ");    // 注意:控制台的换行,这里用 ' ' 表示
assertEquals(s, bytes.toString());          // bytes.toString() 作用是将 bytes内容 转换为字符流
}
}

软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd