TestArrayDiff

abstract class TestArrayDiff[Json](Json: Jsony[Json]) extends Properties with TestProtocol[Json]
trait TestProtocol[Json]
class Properties
class Object
trait Matchable
class Any

Type members

Inherited classlikes

sealed class PropertySpecifier()

Used for specifying properties. Usage:

Used for specifying properties. Usage:

property("myProp") = ...
Inherited from
Properties
Inherited from
Properties

Value members

Inherited methods

def check(prms: Parameters): Unit

Convenience method that checks the properties with the given parameters (or default parameters, if not specified) and reports the result on the console. Should only be used when running tests interactively within the Scala REPL.

Convenience method that checks the properties with the given parameters (or default parameters, if not specified) and reports the result on the console. Should only be used when running tests interactively within the Scala REPL.

If you need to get the results from the test use the check methods in org.scalacheck.Test instead.

Inherited from
Properties
def include(ps: Properties, prefix: String): Unit

Adds all properties from another property collection to this one with a prefix this is prepended to each included property's name.

Adds all properties from another property collection to this one with a prefix this is prepended to each included property's name.

Inherited from
Properties
def include(ps: Properties): Unit

Adds all properties from another property collection to this one

Adds all properties from another property collection to this one

Inherited from
Properties
def main(args: Array[String]): Unit

Convenience method that makes it possible to use this property collection as an application that checks itself on execution. Calls System.exit with the exit code set to the number of failed properties.

Convenience method that makes it possible to use this property collection as an application that checks itself on execution. Calls System.exit with the exit code set to the number of failed properties.

Inherited from
Properties
def overrideParameters(p: Parameters): Parameters

Customize the parameters specific to this class.

Customize the parameters specific to this class.

After the command-line (either main above or sbt) modifies the default parameters, this method is called with the current state of the parameters. This method must then return parameters. The default implementation returns the parameters unchanged. However, a user can override this method in a properties subclass. Their method can modify the parameters. Those parameters will take precedence when the properties are executed.

Inherited from
Properties
def parseJson(s: String): Json
Inherited from
TestProtocol
def parseMergePatch(json: Json): JsonMergePatch[Json]
Inherited from
TestProtocol
def parseMergePatch(s: String): JsonMergePatch[Json]
Inherited from
TestProtocol
def parsePatch(json: Json): JsonPatch[Json]
Inherited from
TestProtocol
def parsePatch(s: String): JsonPatch[Json]
Inherited from
TestProtocol
def parsePointer(s: String): Pointer
Inherited from
TestProtocol
def properties: Seq[(String, Prop)]

Returns all properties of this collection in a list of name/property pairs.

Returns all properties of this collection in a list of name/property pairs.

Inherited from
Properties
def serializeMergePatch(p: JsonMergePatch[Json]): Json
Inherited from
TestProtocol
def serializePatch(p: JsonPatch[Json]): Json
Inherited from
TestProtocol

Inherited fields

val name: String
Inherited from
Properties
Inherited from
Properties
Inherited from
Properties

Implicits

Implicits

implicit val lcsalg: Patience[Json]

Inherited implicits

implicit def boolMarshaller(b: Boolean): Json
Inherited from
TestProtocol
implicit def intMarshaller(i: Int): Json
Inherited from
TestProtocol
implicit def intSeqMarshaller(is: Seq[Int]): Json
Inherited from
TestProtocol
implicit def intSeqUnmarshaller(json: Json): Seq[Int]
Inherited from
TestProtocol
implicit def jsonEq: Eq[Json]
Inherited from
TestProtocol
implicit def stringMarshaller(s: String): Json
Inherited from
TestProtocol