Haxl/tests/AllTests.hs

26 lines
609 B
Haskell
Raw Normal View History

{-# LANGUAGE CPP, OverloadedStrings #-}
module AllTests (allTests) where
2014-06-03 19:10:54 +04:00
import TestExampleDataSource
import BatchTests
import CoreTests
import DataCacheTest
#ifdef HAVE_APPLICATIVEDO
import AdoTests
#endif
import ProfileTests
2014-06-03 19:10:54 +04:00
import Test.HUnit
allTests :: Test
allTests = TestList
2014-06-03 19:10:54 +04:00
[ TestLabel "ExampleDataSource" TestExampleDataSource.tests
, TestLabel "BatchTests" BatchTests.tests
, TestLabel "CoreTests" CoreTests.tests
, TestLabel "DataCacheTests" DataCacheTest.tests
#ifdef HAVE_APPLICATIVEDO
, TestLabel "AdoTests" AdoTests.tests
#endif
, TestLabel "ProfileTests" ProfileTests.tests
2014-06-03 19:10:54 +04:00
]