aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Property.hs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-12-29 22:30:11 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-12-29 22:30:11 +0100
commit4ce63111a9cc7b82d713e1f61f30dcc1a39a71ad (patch)
treedd2d6eef0e4059c21a6a26e73032b5a22da8339d /tests/Property.hs
parenteb0eb0f85e7e656c43cf9cb27bc142ae5a349efc (diff)
downloadverismith-4ce63111a9cc7b82d713e1f61f30dcc1a39a71ad.tar.gz
verismith-4ce63111a9cc7b82d713e1f61f30dcc1a39a71ad.zip
Add tests for new generation method
Diffstat (limited to 'tests/Property.hs')
-rw-r--r--tests/Property.hs20
1 files changed, 16 insertions, 4 deletions
diff --git a/tests/Property.hs b/tests/Property.hs
index 55b7f31..2c06474 100644
--- a/tests/Property.hs
+++ b/tests/Property.hs
@@ -2,20 +2,32 @@ module Property (propertyTests) where
import Data.Graph.Inductive
import Test.Tasty
-import Test.Tasty.QuickCheck as QC
+import qualified Test.Tasty.QuickCheck as QC
import Test.VeriFuzz
+import qualified Test.VeriFuzz.Graph.RandomAlt as V
newtype TestGraph = TestGraph { getGraph :: Gr Gate () }
deriving (Show)
+newtype AltTestGraph = AltTestGraph { getAltGraph :: Gr Gate () }
+ deriving (Show)
+
instance QC.Arbitrary TestGraph where
- arbitrary = TestGraph <$> randomDAG 30
+ arbitrary = TestGraph <$> QC.resize 30 randomDAG
-simpleGraph = QC.testProperty "simple graph generation" $
- \graph -> simp (graph :: TestGraph)
+instance QC.Arbitrary AltTestGraph where
+ arbitrary = AltTestGraph <$> QC.resize 100 V.randomDAG
+
+simpleGraph = QC.testProperty "simple graph generation check" $
+ \graph -> simp graph
where simp = isSimple . getGraph
+simpleAltGraph = QC.testProperty "simple alternative graph generation check" $
+ \graph -> simp graph
+ where simp = isSimple . getAltGraph
+
propertyTests :: TestTree
propertyTests = testGroup "Property Tests"
[ simpleGraph
+ , simpleAltGraph
]