File: Main.hs

package info (click to toggle)
haskell-vector 0.13.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 996 kB
  • sloc: haskell: 11,004; ansic: 6; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Main (main) where

import qualified Tests.Vector
import qualified Tests.Vector.UnitTests
import qualified Tests.Bundle
import qualified Tests.Move

import Test.Tasty (defaultMain,testGroup)

main :: IO ()
main = defaultMain $ testGroup "toplevel" $ Tests.Bundle.tests
                  ++ Tests.Vector.tests
                  ++ Tests.Vector.UnitTests.tests
                  ++ Tests.Move.tests