All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.specs2.io.ConsoleOutput.scala Maven / Gradle / Ivy

There is a newer version: 3.7
Show newest version
package org.specs2
package io

/**
 * Implementation of the Output trait using the standard Console output
 */
trait ConsoleOutput extends Output {
  override def printf(s: String, args: Any*): Unit = Console.printf(s, args:_*)
  override def flush() = Console.flush()
}

object ConsoleOutput extends ConsoleOutput




© 2015 - 2024 Weber Informatics LLC | Privacy Policy