File: Test.hs

package info (click to toggle)
haskell-dataenc 0.14.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 172 kB
  • ctags: 3
  • sloc: haskell: 1,486; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
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