-- | -- Module : Test -- Copyright : [2017..2020] Trevor L. McDonell -- License : BSD3 -- -- Maintainer : Trevor L. McDonell -- Stability : experimental -- Portability : non-portable (GHC extensions) -- module Test where import Test.Tasty import Test.Vector.Storable import Test.Vector.Unboxed main :: IO () main = defaultMain $ testGroup "IO" [ test_vector_unboxed , test_vector_storable ]