X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2FTestSuite.hs;h=20a2476d9b06745e14e80b34f2261bc1fd3f7be4;hb=7b713190502394ad4b23a14f77430ffeebd000d1;hp=57988c35bafc16e7bea6657b80201b9a83adadfa;hpb=280b105ba17ce58bfa79815d6ac07410f5ca0501;p=spline3.git diff --git a/test/TestSuite.hs b/test/TestSuite.hs index 57988c3..20a2476 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,64 @@ 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_tetrahedron12_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron12_volumes_positive + + putStr "prop_tetrahedron13_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron13_volumes_positive + + putStr "prop_tetrahedron14_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron14_volumes_positive + + putStr "prop_tetrahedron15_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron15_volumes_positive + + putStr "prop_tetrahedron16_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron16_volumes_positive + + putStr "prop_tetrahedron17_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron17_volumes_positive + + putStr "prop_tetrahedron18_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron18_volumes_positive + + putStr "prop_tetrahedron19_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron19_volumes_positive + + putStr "prop_tetrahedron20_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron20_volumes_positive + + putStr "prop_tetrahedron21_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron21_volumes_positive + + putStr "prop_tetrahedron22_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron22_volumes_positive + + putStr "prop_tetrahedron23_volumes_positive... " + quickCheckWith qc_args prop_tetrahedron23_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 +281,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 ()