X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2FTestSuite.hs;h=e1255262dce8834cee97d4afc29906fec32d6239;hb=1b5119ed681268c16c08ee7c9cc7b1766d363a6e;hp=ea5eb5e5367bfc4ce3020b7e44dda0815cb488cb;hpb=935d8dfb409d7317e833cd5f1e3f80312b9c3fb4;p=spline3.git diff --git a/test/TestSuite.hs b/test/TestSuite.hs index ea5eb5e..e125526 100644 --- a/test/TestSuite.hs +++ b/test/TestSuite.hs @@ -2,6 +2,7 @@ import Test.HUnit import Test.QuickCheck import Tests.Cardinal +import Tests.Cube import Tests.Face as TF import Tests.Misc import Tests.Tetrahedron as TT @@ -23,8 +24,17 @@ main = do maxDiscard = 500, maxSize = 100 } - -- putStr "prop_all_volumes_positive... " - -- quickCheckWith qc_args prop_all_volumes_positive + putStr "prop_all_volumes_positive... " + quickCheckWith qc_args prop_all_volumes_positive + + putStr "prop_front_face_volumes_positive... " + quickCheckWith qc_args prop_front_face_volumes_positive + + putStr "prop_top_face_volumes_positive... " + quickCheckWith qc_args prop_top_face_volumes_positive + + putStr "prop_v0_all_equal... " + quickCheckWith qc_args prop_v0_all_equal -- putStr "prop_factorial_greater... " -- quickCheckWith qc_args prop_factorial_greater