Scalatest 中有什么东西可以让我通过println
语句测试输出到标准输出吗?
到目前为止,我主要使用FunSuite with ShouldMatchers
.
例如,我们如何检查打印输出
object Hi {
def hello() {
println("hello world")
}
}
如果您只想在有限的时间内重定向控制台输出,请使用定义的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")
}
在控制台上测试打印语句的常用方法是稍微不同地构建程序,以便您可以拦截这些语句。例如,您可以引入一个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")
您可以使用 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)