|
ScalaTest 1.0
|
|
org/scalatest/Report.scala]
class
Report(val name : java.lang.String, val message : java.lang.String, val throwable : scala.Option[java.lang.Throwable], val rerunnable : scala.Option[Rerunnable], val threadName : java.lang.String, val date : java.util.Date)
extends AnyRef
Class formerly used to send reports to a Reporter. Note: This class has been deprecated and
will be removed in a future version of ScalaTest.
As of version 1.0, class Report is no longer used by the ScalaTest API. It has essentially been replaced
by the event mechanism in package org.scalatest.events. It will be removed after a two-release deprecation cycle.
Please migrate any uses of Report to use the new event mechanism.
| Additional Constructor Summary | |
def
|
this
(name : java.lang.String, message : java.lang.String, throwable : scala.Option[java.lang.Throwable], rerunnable : scala.Option[Rerunnable]) : Report
Note: This class has been deprecated and will be removed in a future version of ScalaTest.
|
def
|
this
(name : java.lang.String, message : java.lang.String) : Report
Note: This class has been deprecated and will be removed in a future version of ScalaTest.
|
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Additional Constructor Details |
def
this(name : java.lang.String, message : java.lang.String) : Report
def
this(name : java.lang.String, message : java.lang.String, throwable : scala.Option[java.lang.Throwable], rerunnable : scala.Option[Rerunnable]) : Report
|
ScalaTest 1.0
|
|