All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalatest.tools.SuiteResult.scala Maven / Gradle / Ivy

Go to download

ScalaTest is a free, open-source testing toolkit for Scala and Java programmers.

There is a newer version: 2.0.M6-SNAP4
Show newest version
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)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy