ConsoleReporter

org.scalacheck.util.ConsoleReporter
See theConsoleReporter companion object
class ConsoleReporter(val verbosity: Int, val columnWidth: Int) extends TestCallback

A org.scalacheck.Test.TestCallback implementation that prints test results directly to the console. This is the callback used by ScalaCheck's command line test runner, and when you run org.scalacheck.Prop.check().

Attributes

Companion
object
Source
ConsoleReporter.scala
Graph
Supertypes
trait TestCallback
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

override def onTestResult(name: String, res: Result): Unit

Called whenever a property has finished testing

Called whenever a property has finished testing

Attributes

Definition Classes
Source
ConsoleReporter.scala

Inherited methods

def chain(testCallback: TestCallback): TestCallback

Attributes

Inherited from:
TestCallback
Source
Test.scala
def onPropEval(name: String, threadIdx: Int, succeeded: Int, discarded: Int): Unit

Called each time a property is evaluated

Called each time a property is evaluated

Attributes

Inherited from:
TestCallback
Source
Test.scala

Concrete fields

val columnWidth: Int

Attributes

Source
ConsoleReporter.scala
val verbosity: Int

Attributes

Source
ConsoleReporter.scala