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

org.specs2.reporter.Exporting.scala Maven / Gradle / Ivy

There is a newer version: 3.7
Show newest version
package org.specs2
package reporter

import main.Arguments
import specification._

/**
 * This trait defines a very generic way to export the result of an executing specification.
 *
 * The export function takes a Specification where examples might be still executing in background threads.
 * This way the results can be displayed "just-in-time" when each example has terminated its execution.
 *
 * If this functionality is not required, i.e. if all the execution can be finished before the exporting is done, the executed specification
 * can be accessed with "(s: ExecutingSpecification).execute". This call will block until all examples are executed.
 *
 */
private[specs2]
trait Exporting {

  /** @return a function exporting an ExecutingSpecification */
  def export(implicit args: Arguments): ExecutingSpecification => ExecutedSpecification
}

/**
 * public trait to create a custom exporter
 */
trait Exporter extends Exporting

/**
 * Null implementation for the Exporting trait
 */
trait NoExporting extends Exporter {
  def export(implicit args: Arguments) = (s: ExecutingSpecification) => s.execute
}
object NoExporting extends NoExporting





© 2015 - 2024 Weber Informatics LLC | Privacy Policy