TestConsoleReporter
classin packageklyn.unittest
public class TestConsoleReporter:
TestConsoleReporter

Renders structured test results on the process console.

Example
import klyn.unittest

reporter = TestConsoleReporter()
reporter.printSummary(TestReport())
Constructors
Modifier and Type Member Description
public TestConsoleReporter Creates a console reporter.
Methods
Modifier and Type Member Description
public printClass
printClass(result as TestClassResult) as Void:
Prints captured output and the status of one test class.
public printInfrastructure
printInfrastructure(failure as TestFailure) as Void:
Prints a framework failure that is not attached to a test class.
public printRunning
printRunning(source as String) as Void:
Starts the single-line progress entry completed by printClass().
public printSummary
printSummary(report as TestReport) as Void:
Prints aggregate class and method counts.