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

org.specs2.execute.Executable.scala Maven / Gradle / Ivy

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

/**
 * Trait for anything that can be executed to return a Result
 */
trait Executable {
  /** @return a Result */
  def execute: Result
  /** modify the result to return */
  def map(f: Result => Result): Executable = this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy