Module

Test.QuickCheck.Laws.Data

Package
purescript-quickcheck-laws
Repository
garyb/purescript-quickcheck-laws

Re-exports from Test.QuickCheck.Laws.Data.BooleanAlgebra

#checkBooleanAlgebra Source

checkBooleanAlgebra :: forall a. Arbitrary a => BooleanAlgebra a => Eq a => Proxy a -> Effect Unit
  • Excluded middle: a || not a = tt

Re-exports from Test.QuickCheck.Laws.Data.Bounded

#checkBounded Source

checkBounded :: forall a. Arbitrary a => Bounded a => Ord a => Proxy a -> Effect Unit
  • Ordering: bottom <= a <= top

Re-exports from Test.QuickCheck.Laws.Data.BoundedEnum

#checkBoundedEnum Source

checkBoundedEnum :: forall a. Arbitrary a => BoundedEnum a => Ord a => Proxy a -> Effect Unit
  • succ: succ bottom >>= succ >>= succ ... succ [cardinality - 1 times] = top
  • pred: pred top >>= pred >>= pred ... pred [cardinality - 1 times] = bottom
  • predsucc: forall a > bottom: pred a >>= succ = Just a
  • succpred: forall a < top: succ a >>= pred = Just a
  • enumpred: forall a > bottom: fromEnum <$> pred a = Just (fromEnum a - 1)
  • enumsucc: forall a < top: fromEnum <$> succ a = Just (fromEnum a + 1)
  • compare: compare e1 e2 = compare (fromEnum e1) (fromEnum e2)
  • tofromenum: toEnum (fromEnum a) = Just a

Re-exports from Test.QuickCheck.Laws.Data.CommutativeRing

#checkCommutativeRing Source

checkCommutativeRing :: forall a. CommutativeRing a => Arbitrary a => Eq a => Proxy a -> Effect Unit
  • Commutative multiplication: a * b = b * a

Re-exports from Test.QuickCheck.Laws.Data.DivisionRing

#checkDivisionRing Source

checkDivisionRing :: forall a. DivisionRing a => Arbitrary a => Eq a => Proxy a -> Effect Unit

Non-zero ring: one /= zero Non-zero multiplicative inverse: recip a * a = a * recip a = one for all non-zero a

Re-exports from Test.QuickCheck.Laws.Data.Eq

#checkEq Source

checkEq :: forall a. Arbitrary a => Eq a => Proxy a -> Effect Unit
  • Reflexivity: x == x = true
  • Symmetry: x == y = y == x
  • Transitivity: if x == y and y == z then x == z
  • Negation: x /= y = not (x == y)

Re-exports from Test.QuickCheck.Laws.Data.EuclideanRing

#checkEuclideanRing Source

checkEuclideanRing :: forall a. EuclideanRing a => Arbitrary a => Eq a => Proxy a -> Effect Unit
  • Integral domain: one /= zero, and if a and b are both nonzero then so is their product a * b
  • Euclidean function degree:
    • Nonnegativity: For all nonzero a, degree a >= 0
    • Quotient/remainder: For all a and b, where b is nonzero, let q = a / b and r = a `mod` b; then a = q*b + r, and also either r = zero or degree r < degree b
  • Submultiplicative euclidean function:
    • For all nonzero a and b, degree a <= degree (a * b)

Re-exports from Test.QuickCheck.Laws.Data.Foldable

#checkFoldableFunctor Source

checkFoldableFunctor :: forall f. Foldable f => Functor f => Arbitrary (f A) => Proxy2 f -> Effect Unit

foldMap: foldMap = fold <<< map

#checkFoldable Source

checkFoldable :: forall f. Foldable f => Arbitrary (f A) => Proxy2 f -> Effect Unit
  • foldr: foldr = foldrDefault
  • foldl: foldl = foldlDefault

Re-exports from Test.QuickCheck.Laws.Data.Functor

#checkFunctor Source

checkFunctor :: forall f. Functor f => Arbitrary (f A) => Eq (f A) => Proxy2 f -> Effect Unit
  • Identity: (<$>) id = id
  • Composition: (<$>) (f <<< g) = (f <$>) <<< (g <$>)

Re-exports from Test.QuickCheck.Laws.Data.HeytingAlgebra

#checkHeytingAlgebra Source

checkHeytingAlgebra :: forall a. Arbitrary a => HeytingAlgebra a => Eq a => Proxy a -> Effect Unit
  • Associativity:
    • a || (b || c) = (a || b) || c
    • a && (b && c) = (a && b) && c
  • Commutativity:
    • a || b = b || a
    • a && b = b && a
  • Absorption:
    • a || (a && b) = a
    • a && (a || b) = a
  • Idempotent:
    • a || a = a
    • a && a = a
  • Identity:
    • a || ff = a
    • a && tt = a
  • Implication:
    • a `implies` a = tt
    • a && (a `implies` b) = a && b
    • b && (a `implies` b) = b
    • a `implies` (b && c) = (a `implies` b) && (a `implies` c)
  • Complemented:
    • not a = a `implies` ff

Re-exports from Test.QuickCheck.Laws.Data.Monoid

#checkMonoid Source

checkMonoid :: forall m. Monoid m => Arbitrary m => Eq m => Proxy m -> Effect Unit
  • Left identity: mempty <> x = x
  • Right identity: x <> mempty = x

Re-exports from Test.QuickCheck.Laws.Data.Ord

#checkOrd Source

checkOrd :: forall a. Arbitrary a => Ord a => Proxy a -> Effect Unit
  • Reflexivity: a <= a
  • Antisymmetry: if a <= b and b <= a then a = b
  • Transitivity: if a <= b and b <= c then a <= c

Re-exports from Test.QuickCheck.Laws.Data.Ring

#checkRing Source

checkRing :: forall a. Ring a => Arbitrary a => Eq a => Proxy a -> Effect Unit
  • Additive inverse: a - a = a + (-a) = (-a) + a = zero

Re-exports from Test.QuickCheck.Laws.Data.Semigroup

#checkSemigroup Source

checkSemigroup :: forall s. Semigroup s => Arbitrary s => Eq s => Proxy s -> Effect Unit
  • Associativity: (x <> y) <> z = x <> (y <> z)

Re-exports from Test.QuickCheck.Laws.Data.Semiring

#checkSemiring Source

checkSemiring :: forall a. Semiring a => Arbitrary a => Eq a => Proxy a -> Effect Unit
  • Commutative monoid under addition:
    • Associativity: (a + b) + c = a + (b + c)
    • Identity: zero + a = a + zero = a
    • Commutative: a + b = b + a
  • Monoid under multiplication:
    • Associativity: (a * b) * c = a * (b * c)
    • Identity: one * a = a * one = a
  • Multiplication distributes over addition:
    • Left distributivity: a * (b + c) = (a * b) + (a * c)
    • Right distributivity: (a + b) * c = (a * c) + (b * c)
  • Annihiliation: zero * a = a * zero = zero