Copyright | (c) Andrey Mulik 2021 |
---|---|
License | BSD-style |
Maintainer | work.a.mulik@gmail.com |
Portability | portable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Test.SDP.Split
is service module that provides Split
tests.
Synopsis
- type TestSplit s = Int -> s -> Bool
- type TestSplit1 s e = Int -> s e -> Bool
- type TestSplit2 s i e = Int -> s i e -> Bool
- splitTest :: (Split s e, Eq e, Eq s, Bordered s i) => (e -> Bool) -> TestSplit s
- basicSplitTest :: (Split s e, Eq e, Eq s, Bordered s i) => TestSplit s
- whileSplitTest :: (Split s e, Eq e, Eq s, Bordered s i) => (e -> Bool) -> s -> Bool
Split test
type TestSplit s = Int -> s -> Bool Source #
TestSplit
is service type synonym for more comfortable quickCheck using.
type TestSplit1 s e = Int -> s e -> Bool Source #
TestSplit1
is service type synonym for more comfortable quickCheck using.
type TestSplit2 s i e = Int -> s i e -> Bool Source #
TestSplit2
is service type synonym for more comfortable quickCheck using.