]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - test/TestSuite.hs
Move all of the trilinear coefficient tests into the Tests.Grid module.
[spline3.git] / test / TestSuite.hs
index 20a2476d9b06745e14e80b34f2261bc1fd3f7be4..077faa9dfb5e57b2eb0c9fd9d9fdc3639a179353 100644 (file)
@@ -4,11 +4,13 @@ import Test.QuickCheck
 import Tests.Cardinal
 import Tests.Cube
 import Tests.Face as TF
+import Tests.Grid as TG
 import Tests.Misc
 import Tests.Tetrahedron as TT
 
 -- The list of HUnit tests.
 test_suite = TestList (concat [face_tests,
+                               grid_tests,
                                misc_tests,
                                tetrahedron_tests])
 
@@ -24,6 +26,9 @@ main = do
                           maxDiscard = 500,
                           maxSize = 100 }
 
+
+  putStrLn "\nGrid Tests\n"
+
   putStrLn "\nCube Tests\n"
 
   putStr "prop_all_volumes_positive... "