File: Main.hs

package info (click to toggle)
haskell-vector 0.13.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,120 kB
  • sloc: haskell: 12,642; ansic: 6; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 840 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module Main (main) where

import qualified Tests.Vector.UnitTests
import qualified Tests.Vector.Boxed
import qualified Tests.Vector.Primitive
import qualified Tests.Vector.Storable
import qualified Tests.Vector.Strict
import qualified Tests.Vector.Unboxed
import qualified Tests.Bundle
import qualified Tests.Move

import Test.Tasty (defaultMain,testGroup)

main :: IO ()
main = defaultMain $ testGroup "toplevel" $ concat
  [ Tests.Bundle.tests
  , [ testGroup "Tests.Vector.Boxed" Tests.Vector.Boxed.tests
    , testGroup "Tests.Vector.Primitive" Tests.Vector.Primitive.tests
    , testGroup "Tests.Vector.Storable" Tests.Vector.Storable.tests
    , testGroup "Tests.Vector.Strict" Tests.Vector.Strict.tests
    , testGroup "Tests.Vector.Unboxed" Tests.Vector.Unboxed.tests
    ]
  , Tests.Vector.UnitTests.tests
  , Tests.Move.tests
  ]