Scalatest - 如何测试 println
Scalatest 中是否有某些东西可以让我通过 println 语句测试标准输出的输出?
到目前为止,我主要使用 FunSuite 和 ShouldMatchers
。
例如我们如何检查打印输出
object Hi {
def hello() {
println("hello world")
}
}
Is there something in Scalatest that will allow me to test the output to the standard out via a println
statement?
So far I've mainly been using FunSuite with ShouldMatchers
.
e.g. how do we check the printed output of
object Hi {
def hello() {
println("hello world")
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您只想在有限的时间内重定向控制台输出,请使用
Console
上定义的withOut
和withErr
方法:If you just want to redirect console output for a limited duration, use the
withOut
andwithErr
methods defined onConsole
:在控制台上测试打印语句的常用方法是稍微不同地构造您的程序,以便您可以拦截这些语句。例如,您可以引入一个
Output
特征:并且在您的测试中,您可以定义另一个实际拦截调用的特征
MockOutput
:The usual way to test print statements on the console is to structure your program a bit differently so that you can intercept those statements. You can for example introduce an
Output
trait:And in your tests you can define another trait
MockOutput
actually intercepting the calls:您可以使用 Console.setOut(PrintStream) 替换 println 写入的位置。
显然您可以使用您想要的任何类型的流。
您可以对 stderr 和 stdin 执行相同的操作
You can replace where println writes to by using Console.setOut(PrintStream)
You can obviously use any type of stream you want.
You can do the same sort of thing for stderr and stdin with