org.scalatest
SpecReport
class
SpecReport extends Report
Inherited
- Hide All
- Show all
- Report
- AnyRef
- Any
Instance constructors
-
new
SpecReport(name: String, message: String, plainSpecText: String, formattedSpecText: String, includeInSpecOutput: Boolean, throwable: Option[Throwable], rerunnable: Option[Rerunnable])
-
new
SpecReport(name: String, message: String, plainSpecText: String, formattedSpecText: String, includeInSpecOutput: Boolean)
-
new
SpecReport(name: String, message: String, plainSpecText: String, formattedSpecText: String, includeInSpecOutput: Boolean, throwable: Option[Throwable], rerunnable: Option[Rerunnable], threadName: String, date: Date)
Value Members
-
def
!=(arg0: AnyRef): Boolean
-
def
!=(arg0: Any): Boolean
-
def
##(): Int
-
def
$asInstanceOf[T0](): T0
-
def
$isInstanceOf[T0](): Boolean
-
def
==(arg0: AnyRef): Boolean
-
def
==(arg0: Any): Boolean
-
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
val
date: Date
-
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
val
formattedSpecText: String
-
def
getClass(): java.lang.Class[_ <: java.lang.Object]
-
def
hashCode(): Int
-
val
includeInSpecOutput: Boolean
-
def
isInstanceOf[T0]: Boolean
-
val
message: String
-
val
name: String
-
def
ne(arg0: AnyRef): Boolean
-
def
notify(): Unit
-
def
notifyAll(): Unit
-
val
plainSpecText: String
-
val
rerunnable: Option[Rerunnable]
-
def
synchronized[T0](arg0: T0): T0
-
val
threadName: String
-
val
throwable: Option[Throwable]
-
def
toString(): String
-
def
wait(): Unit
-
def
wait(arg0: Long, arg1: Int): Unit
-
def
wait(arg0: Long): Unit
Class formerly used to send specification-style 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
SpecReport
is no longer used by the ScalaTest API. It has essentially been replaced by the event mechanism in packageorg.scalatest.events
. It will be removed after a two-release deprecation cycle. Please migrate any uses ofSpecReport
to use the new event mechanism.deprecated:
authors:
Bill Venners