From: Michael Orlitzky Date: Fri, 6 May 2011 22:38:20 +0000 (-0400) Subject: Re-enable the Cube tests in the suite. X-Git-Tag: 0.0.1~331 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=1b5119ed681268c16c08ee7c9cc7b1766d363a6e Re-enable the Cube tests in the suite. --- 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