DotsReporter

class DotsReporter(timeLimit: Int, failureLimit: Int) extends Reporter

A Reporter (in the ScalaTest sense) that displays a . for each successful test case and a X for each failed test case. For the first few failed test cases, the complete details (including input, expected output, and actual output) are displayed instead of merely an X.

Value parameters:
failureLimit

the number of failed test cases that will display full details before switching to an X

timeLimit

the time (in milliseconds) that a test case is allowed to run before timing out

trait Reporter
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(event: Event): Unit
def cancelCount: Int
def failCount: Int
def finishTests(): Unit
def startTests(name: String): Unit
def successCount: Int
def totalCount: Int