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

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

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 - 2025 Weber Informatics LLC | Privacy Policy