X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2FTestSuite.hs;h=0e0055d6142fafc2249c50623b02f09fb73d33da;hb=5109e41113a39024ef3fe799abb08de4a2ac74b0;hp=ce386dbd754757e36842fa97c46a7102532c61ca;hpb=2064e9a7da32813c6dce843127e2306b841df353;p=spline3.git diff --git a/test/TestSuite.hs b/test/TestSuite.hs index ce386db..0e0055d 100644 --- a/test/TestSuite.hs +++ b/test/TestSuite.hs @@ -2,7 +2,7 @@ import Test.HUnit import Test.QuickCheck import Tests.Cardinal -import Tests.Cube +import Tests.Cube as TC import Tests.Grid import Tests.Misc import Tests.Tetrahedron as TT @@ -29,9 +29,6 @@ main = do putStrLn "\nCube Tests\n" - -- putStr "prop_c0120_identity1... " - -- quickCheckWith qc_args prop_c0120_identity1 - putStr "prop_all_volumes_positive... " quickCheckWith qc_args prop_all_volumes_positive @@ -137,94 +134,31 @@ main = do putStr "prop_v0_all_equal... " quickCheckWith qc_args prop_v0_all_equal --- putStrLn "\np. 78, (2.5)\n" - --- putStr "prop_cijk1_identity... " --- quickCheckWith qc_args prop_cijk1_identity - - - 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 - - putStr "prop_b0_v1_always_zero... " - quickCheckWith qc_args prop_b0_v1_always_zero - - putStr "prop_b0_v2_always_zero... " - quickCheckWith qc_args prop_b0_v2_always_zero - - putStr "prop_b0_v3_always_zero... " - quickCheckWith qc_args prop_b0_v3_always_zero - - putStr "prop_b1_v1_always_unity... " - quickCheckWith qc_args prop_b1_v1_always_unity - - putStr "prop_b1_v0_always_zero... " - quickCheckWith qc_args prop_b1_v0_always_zero - - putStr "prop_b1_v2_always_zero... " - quickCheckWith qc_args prop_b1_v2_always_zero - - putStr "prop_b1_v3_always_zero... " - quickCheckWith qc_args prop_b1_v3_always_zero - - putStr "prop_b2_v2_always_unity... " - quickCheckWith qc_args prop_b2_v2_always_unity - - putStr "prop_b2_v0_always_zero... " - quickCheckWith qc_args prop_b2_v0_always_zero - - putStr "prop_b2_v1_always_zero... " - quickCheckWith qc_args prop_b2_v1_always_zero + -- putStrLn "\np. 78, (2.5)\n" - putStr "prop_b2_v3_always_zero... " - quickCheckWith qc_args prop_b2_v3_always_zero - - putStr "prop_b3_v3_always_unity... " - quickCheckWith qc_args prop_b3_v3_always_unity - - putStr "prop_b3_v0_always_zero... " - quickCheckWith qc_args prop_b3_v0_always_zero + -- putStr "prop_cijk1_identity... " + -- quickCheckWith qc_args prop_cijk1_identity - putStr "prop_b3_v1_always_zero... " - quickCheckWith qc_args prop_b3_v1_always_zero - putStr "prop_b3_v2_always_zero... " - quickCheckWith qc_args prop_b3_v2_always_zero + -- putStrLn "\np. 79, (2.6)\n" - putStrLn "\np. 78, (2.4)\n" + putStr "prop_c0120_identity1... " + quickCheckWith qc_args TC.prop_c0120_identity1 - putStr "prop_c3000_identity... " - quickCheckWith qc_args TT.prop_c3000_identity + putStr "prop_c0210_identity1... " + quickCheckWith qc_args TC.prop_c0210_identity1 - putStr "prop_c2100_identity... " - quickCheckWith qc_args TT.prop_c2100_identity + putStr "prop_c0300_identity1... " + quickCheckWith qc_args TC.prop_c0300_identity1 putStr "prop_c1110_identity... " - quickCheckWith qc_args TT.prop_c1110_identity - - -- putStrLn "\np. 79, (2.6)\n" + quickCheckWith qc_args TC.prop_c1110_identity - -- putStr "prop_c0210_identity1... " - -- quickCheckWith qc_args TF.prop_c0210_identity1 + putStr "prop_c1200_identity1... " + quickCheckWith qc_args TC.prop_c1200_identity1 - -- putStr "prop_c0300_identity1... " - -- quickCheckWith qc_args TF.prop_c0300_identity1 - - -- putStr "prop_c1110_identity... " - -- quickCheckWith qc_args TF.prop_c1110_identity - - -- putStr "prop_c1200_identity1... " - -- quickCheckWith qc_args prop_c1200_identity1 - - -- putStr "prop_c2100_identity1... " - -- quickCheckWith qc_args TF.prop_c2100_identity1 + putStr "prop_c2100_identity1... " + quickCheckWith qc_args TC.prop_c2100_identity1 -- putStrLn "\np. 79, (2.7)\n" @@ -286,6 +220,74 @@ main = do -- putStr "prop_c0300_identity3... " -- quickCheckWith qc_args TF.prop_c0300_identity3 + + 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 + + putStr "prop_b0_v1_always_zero... " + quickCheckWith qc_args prop_b0_v1_always_zero + + putStr "prop_b0_v2_always_zero... " + quickCheckWith qc_args prop_b0_v2_always_zero + + putStr "prop_b0_v3_always_zero... " + quickCheckWith qc_args prop_b0_v3_always_zero + + putStr "prop_b1_v1_always_unity... " + quickCheckWith qc_args prop_b1_v1_always_unity + + putStr "prop_b1_v0_always_zero... " + quickCheckWith qc_args prop_b1_v0_always_zero + + putStr "prop_b1_v2_always_zero... " + quickCheckWith qc_args prop_b1_v2_always_zero + + putStr "prop_b1_v3_always_zero... " + quickCheckWith qc_args prop_b1_v3_always_zero + + putStr "prop_b2_v2_always_unity... " + quickCheckWith qc_args prop_b2_v2_always_unity + + putStr "prop_b2_v0_always_zero... " + quickCheckWith qc_args prop_b2_v0_always_zero + + putStr "prop_b2_v1_always_zero... " + quickCheckWith qc_args prop_b2_v1_always_zero + + putStr "prop_b2_v3_always_zero... " + quickCheckWith qc_args prop_b2_v3_always_zero + + putStr "prop_b3_v3_always_unity... " + quickCheckWith qc_args prop_b3_v3_always_unity + + putStr "prop_b3_v0_always_zero... " + quickCheckWith qc_args prop_b3_v0_always_zero + + putStr "prop_b3_v1_always_zero... " + quickCheckWith qc_args prop_b3_v1_always_zero + + putStr "prop_b3_v2_always_zero... " + quickCheckWith qc_args prop_b3_v2_always_zero + + putStrLn "\np. 78, (2.4)\n" + + putStr "prop_c3000_identity... " + quickCheckWith qc_args TT.prop_c3000_identity + + putStr "prop_c2100_identity... " + quickCheckWith qc_args TT.prop_c2100_identity + + putStr "prop_c1110_identity... " + quickCheckWith qc_args TT.prop_c1110_identity + + putStrLn "\nCardinal Tests\n" putStr "prop_ccwx_rotation_changes_direction... "