X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2FTestSuite.hs;h=a73480d87205b8201765e08283dad9adefe48dae;hb=51adbba172ccaa70c4832809de334674a8ba6a0f;hp=57988c35bafc16e7bea6657b80201b9a83adadfa;hpb=084d6e31ba1eda1e7c206ff8ff23e8567e2339ce;p=spline3.git diff --git a/test/TestSuite.hs b/test/TestSuite.hs index 57988c3..a73480d 100644 --- a/test/TestSuite.hs +++ b/test/TestSuite.hs @@ -24,6 +24,8 @@ main = do maxDiscard = 500, maxSize = 100 } + putStrLn "\nCube Tests\n" + putStr "prop_all_volumes_positive... " quickCheckWith qc_args prop_all_volumes_positive @@ -78,12 +80,28 @@ main = do putStr "prop_tetrahedron7_volumes_positive... " quickCheckWith qc_args prop_tetrahedron7_volumes_positive + putStr "prop_tetrahedron8_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron8_volumes_positive + + putStr "prop_tetrahedron9_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron9_volumes_positive + + putStr "prop_tetrahedron10_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron10_volumes_positive + + putStr "prop_tetrahedron11_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron11_volumes_positive + putStr "prop_v0_all_equal... " quickCheckWith qc_args prop_v0_all_equal + putStrLn "\nMisc Tests\n" + putStr "prop_factorial_greater... " quickCheckWith qc_args prop_factorial_greater + putStrLn "\nTetrahedron Tests\n" + putStr "prop_b0_v0_always_unity... " quickCheckWith qc_args prop_b0_v0_always_unity @@ -227,10 +245,30 @@ main = do -- putStr "prop_c0300_identity3... " -- quickCheckWith qc_args TF.prop_c0300_identity3 + putStrLn "\nCardinal Tests\n" + putStr "prop_ccwx_rotation_changes_direction... " quickCheckWith qc_args prop_ccwx_rotation_changes_direction putStr "prop_cwx_rotation_changes_direction... " quickCheckWith qc_args prop_cwx_rotation_changes_direction + putStr "prop_four_cwx_is_identity... " + quickCheckWith qc_args prop_four_cwx_is_identity + + putStr "prop_four_ccwx_is_identity... " + quickCheckWith qc_args prop_four_ccwx_is_identity + + putStr "prop_four_cwy_is_identity... " + quickCheckWith qc_args prop_four_cwy_is_identity + + putStr "prop_four_ccwy_is_identity... " + quickCheckWith qc_args prop_four_ccwy_is_identity + + putStr "prop_four_cwz_is_identity... " + quickCheckWith qc_args prop_four_cwz_is_identity + + putStr "prop_four_ccwz_is_identity... " + quickCheckWith qc_args prop_four_ccwz_is_identity + return ()