org.scalatest.tools.SuiteResult.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatest_2.9.0 Show documentation
Show all versions of scalatest_2.9.0 Show documentation
ScalaTest is a free, open-source testing toolkit for Scala and Java
programmers.
package org.scalatest.tools
import org.scalatest.events.{Event, SuiteStarting}
private[scalatest] case class SuiteResult(
suiteId: String,
suiteName: String,
suiteClassName: Option[String],
duration: Option[Long],
startEvent: SuiteStarting,
endEvent: Event,
eventList: collection.immutable.IndexedSeq[Event],
testsSucceededCount: Int,
testsFailedCount: Int,
testsIgnoredCount: Int,
testsPendingCount: Int,
testsCanceledCount: Int,
isCompleted: Boolean)