scalaprops.TestExecutor.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalaprops_2.11 Show documentation
Show all versions of scalaprops_2.11 Show documentation
property based testing library for Scala
package scalaprops
import scala.concurrent.duration.Duration
abstract class TestExecutor {
def execute[A](timeout: Duration)(f: => A): A
def shutdown(): Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy