]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blob - test/TestSuite.hs
Add a tasty test suite and two tests for the existing XML modules.
[dead/htsn-import.git] / test / TestSuite.hs
1 import Test.Tasty ( TestTree, defaultMain, testGroup )
2
3 import TSN.Injuries ( injuries_tests )
4 import TSN.InjuriesDetail ( injuries_detail_tests )
5
6 tests :: TestTree
7 tests = testGroup
8 "All tests"
9 [ injuries_tests, injuries_detail_tests ]
10
11 main :: IO ()
12 main = defaultMain tests