summaryrefslogtreecommitdiff
path: root/test-src/Test.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test-src/Test.hs')
-rw-r--r--test-src/Test.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/test-src/Test.hs b/test-src/Test.hs
new file mode 100644
index 0000000..2155bdf
--- /dev/null
+++ b/test-src/Test.hs
@@ -0,0 +1,16 @@
1{-
2 - Copyright : (c) 2009 Magnus Therning
3 - License : BSD3
4 -}
5
6module Main
7 where
8
9import Test.Framework
10
11import qualified DataencQC as DQC
12import qualified DataencUT as DUT
13
14tests = [ DQC.allTests , DUT.allTests ]
15
16main = defaultMain tests