Scalatest中是否有某些内容允许我通过println
语句测试输出到标准输出?
到目前为止,我主要使用FunSuite with ShouldMatchers
。
e.g。我们如何检查
的打印输出object Hi {
def hello() {
println("hello world")
}
}
答案 0 :(得分:68)
如果您只想在有限时间内重定向控制台输出,请使用withOut
上定义的withErr
和Console
方法:
val stream = new java.io.ByteArrayOutputStream()
Console.withOut(stream) {
//all printlns in this block will be redirected
println("Fly me to the moon, let me play among the stars")
}
答案 1 :(得分:25)
在控制台上测试打印语句的常用方法是以不同的方式构建程序,以便拦截这些语句。例如,您可以引入Output
特征:
trait Output {
def print(s: String) = Console.println(s)
}
class Hi extends Output {
def hello() = print("hello world")
}
在测试中,您可以定义另一个实际拦截调用的特征MockOutput
:
trait MockOutput extends Output {
var messages: Seq[String] = Seq()
override def print(s: String) = messages = messages :+ s
}
val hi = new Hi with MockOutput
hi.hello()
hi.messages should contain("hello world")
答案 2 :(得分:2)
您可以使用Console.setOut(PrintStream)
替换println写入的位置val stream = new java.io.ByteArrayOutputStream()
Console.setOut(stream)
println("Hello world")
Console.err.println(stream.toByteArray)
Console.err.println(stream.toString)
您显然可以使用任何类型的流。 您可以使用
为stderr和stdin执行相同类型的操作Console.setErr(PrintStream)
Console.setIn(PrintStream)