File: Vector.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-- 522 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# LANGUAGE ConstraintKinds #-}
module Tests.Vector (tests) where

import Test.Tasty (testGroup)
import qualified Tests.Vector.Boxed
import qualified Tests.Vector.Primitive
import qualified Tests.Vector.Storable
import qualified Tests.Vector.Unboxed

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.Unboxed" Tests.Vector.Unboxed.tests
  ]