File: UnitTests.hs

package info (click to toggle)
haskell-linear 1.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 384 kB
  • sloc: haskell: 5,225; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 463 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-# LANGUAGE CPP #-}
module Main (main) where
import Test.Framework (defaultMain, testGroup, Test)
import Test.Framework.Providers.HUnit
import qualified Plucker
import qualified Binary
import qualified V

tests :: [Test]
tests = [ testGroup "Plucker" $ hUnitTestToTests Plucker.tests
        , testGroup "Binary" $ hUnitTestToTests Binary.tests
        , testGroup "V" $ hUnitTestToTests V.tests
        ]

main :: IO ()
main = defaultMain tests