File: Primitive.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 (41 lines) | stat: -rw-r--r-- 1,252 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{-# LANGUAGE ConstraintKinds #-}
module Tests.Vector.Primitive (tests) where

import Test.Tasty
import qualified Data.Vector.Primitive
import Tests.Vector.Property

import GHC.Exts (inline)

testGeneralPrimitiveVector
  :: forall a. ( CommonContext a Data.Vector.Primitive.Vector
               , Data.Vector.Primitive.Prim a, Ord a, Data a)
  => Data.Vector.Primitive.Vector a -> [TestTree]
testGeneralPrimitiveVector dummy = concatMap ($ dummy)
  [
    testSanity
  , inline testPolymorphicFunctions
  , testOrdFunctions
  , testMonoidFunctions
  , testDataFunctions
  ]

testNumericPrimitiveVector
  :: forall a. ( CommonContext a Data.Vector.Primitive.Vector
               , Data.Vector.Primitive.Prim a, Ord a, Num a, Enum a, Random a, Data a)
  => Data.Vector.Primitive.Vector a -> [TestTree]
testNumericPrimitiveVector dummy = concatMap ($ dummy)
  [
    testGeneralPrimitiveVector
  , testNumFunctions
  , testEnumFunctions
  ]

tests =
  [ testGroup "Int" $
    testNumericPrimitiveVector (undefined :: Data.Vector.Primitive.Vector Int)
  , testGroup "Double" $
    testNumericPrimitiveVector
      (undefined :: Data.Vector.Primitive.Vector Double)
  , testGroup "unstream" $ testUnstream (undefined :: Data.Vector.Primitive.Vector Int)
  ]