34

Scalatest 中有什么东西可以让我通过println语句测试输出到标准输出吗?

到目前为止,我主要使用FunSuite with ShouldMatchers.

例如,我们如何检查打印输出

object Hi {
  def hello() {
    println("hello world")
  }
}
4

3 回答 3

89

如果您只想在有限的时间内重定向控制台输出,请使用定义的withOutwithErr方法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")
}
于 2011-08-28T08:24:25.400 回答
31

在控制台上测试打印语句的常用方法是稍微不同地构建程序,以便您可以拦截这些语句。例如,您可以引入一个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")
于 2011-08-28T01:25:53.177 回答
6

您可以使用 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)
于 2011-08-28T07:42:32.737 回答