2 import Control
.Applicative
((<$>))
3 import System
.Exit
(exitFailure, exitSuccess
)
4 import Test
.IndexedMatrix
(allIndexedMatrixTests
)
5 import Test
.Monotonic
(allMonotonicTests
)
6 import Test
.ValueSimplex
(allValueSimplexTests
)
10 success
<- and <$> sequence
11 [ allIndexedMatrixTests
13 , allValueSimplexTests
17 putStrLn "All tests passed!"
20 putStrLn "At least one test failed."