org.scalatest

class Report

[source: org/scalatest/Report.scala]

@scala.deprecated

@scala.serializable

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.

Author
Bill Venners
Direct Known Subclasses:
SpecReport

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
@scala.deprecated

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.

@scala.deprecated

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.


Copyright (C) 2001-2009 Artima, Inc. All rights reserved.