Packages

c

org.scalacheck

PropFromFun

sealed class PropFromFun extends Prop

Helper class to satisfy ScalaJS compilation. Do not use this directly, use Prop.apply instead.

Linear Supertypes
Prop, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PropFromFun
  2. Prop
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PropFromFun(f: (Parameters) ⇒ Result)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &&(p: ⇒ Prop): Prop

    Returns a new property that holds if and only if both this and the given property hold.

    Returns a new property that holds if and only if both this and the given property hold. If one of the properties doesn't generate a result, the new property will generate false.

    Definition Classes
    Prop
  4. def ++(p: ⇒ Prop): Prop

    Returns a new property that holds if and only if both this and the given property hold.

    Returns a new property that holds if and only if both this and the given property hold. If one of the properties doesn't generate a result, the new property will generate the same result as the other property.

    Definition Classes
    Prop
  5. def :|(l: Symbol): Prop

    Put a label on the property to make test reports clearer

    Put a label on the property to make test reports clearer

    Definition Classes
    Prop
  6. def :|(l: String): Prop

    Put a label on the property to make test reports clearer

    Put a label on the property to make test reports clearer

    Definition Classes
    Prop
  7. def ==(p: ⇒ Prop): Prop

    Returns a new property that holds if and only if both this and the given property generates a result with the exact same status.

    Returns a new property that holds if and only if both this and the given property generates a result with the exact same status. Note that this means that if one of the properties is proved, and the other one passed, then the resulting property will fail.

    Definition Classes
    Prop
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def ==>(p: ⇒ Prop): Prop

    Combines two properties through implication

    Combines two properties through implication

    Definition Classes
    Prop
  10. def apply(prms: Parameters): Result
    Definition Classes
    PropFromFunProp
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def check(paramFun: (Parameters) ⇒ Parameters): Unit

    Convenience method that checks this property and reports the result on the console.

    Convenience method that checks this property and reports the result on the console. Should only be used when running tests interactively within the Scala REPL.

    The provided argument should be a function that takes the default test parameters (Test.Parameters.default) as input and outputs a modified Test.Parameters instance that Example use:

    p.check(_.withMinSuccessfulTests(500))
    
    p.check { _.
      withMinSuccessfulTests(80000).
      withWorkers(4)
    }
    Definition Classes
    Prop
  13. def check(): Unit

    Convenience method that checks this property with the given parameters and reports the result on the console.

    Convenience method that checks this property with the given parameters and reports the result on the console. Should only be used when running tests interactively within the Scala REPL.

    The default test parameters (Test.Parameters.default) are used for the check.

    Definition Classes
    Prop
  14. def check(prms: Parameters): Unit

    Convenience method that checks this property with the given parameters and reports the result on the console.

    Convenience method that checks this property with the given parameters and reports the result on the console. Should only be used when running tests interactively within the Scala REPL.

    Definition Classes
    Prop
  15. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  16. def combine(p: ⇒ Prop)(f: (Result, Result) ⇒ Result): Prop
    Definition Classes
    Prop
  17. def contramap(f: (Parameters) ⇒ Parameters): Prop
    Definition Classes
    Prop
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def flatMap(f: (Result) ⇒ Prop): Prop
    Definition Classes
    Prop
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def label(l: String): Prop

    Put a label on the property to make test reports clearer

    Put a label on the property to make test reports clearer

    Definition Classes
    Prop
  26. def main(args: Array[String]): Unit

    Convenience method that makes it possible to use this property as an application that checks itself on execution.

    Convenience method that makes it possible to use this property as an application that checks itself on execution. Calls System.exit with a non-zero exit code if the property check fails.

    Definition Classes
    Prop
  27. def map(f: (Result) ⇒ Result): Prop
    Definition Classes
    Prop
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    Prop → AnyRef → Any
  33. def useSeed(name: String, seed: Seed): Prop
    Definition Classes
    Prop
  34. def viewSeed(name: String): Prop
    Definition Classes
    Prop
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  38. def |:(l: Symbol): Prop

    Put a label on the property to make test reports clearer

    Put a label on the property to make test reports clearer

    Definition Classes
    Prop
  39. def |:(l: String): Prop

    Put a label on the property to make test reports clearer

    Put a label on the property to make test reports clearer

    Definition Classes
    Prop
  40. def ||(p: ⇒ Prop): Prop

    Returns a new property that holds if either this or the given property (or both) hold.

    Returns a new property that holds if either this or the given property (or both) hold.

    Definition Classes
    Prop

Inherited from Prop

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped