summaryrefslogtreecommitdiff
path: root/test-src/Test.hs
blob: 2155bdf8e44672bdaa65c86100df4eed6b73c861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-
 - Copyright : (c) 2009 Magnus Therning
 - License   : BSD3
 -}

module Main
    where

import Test.Framework

import qualified DataencQC as DQC
import qualified DataencUT as DUT

tests = [ DQC.allTests , DUT.allTests ]

main = defaultMain tests