16 lines
489 B
Haskell
16 lines
489 B
Haskell
{-# LANGUAGE Unsafe #-} -- unsafe: Uses functions imported from unsafe modules
|
|
|
|
-- library
|
|
import Test.Tasty qualified as Tasty
|
|
|
|
-- test groups
|
|
import Test.Data.Map.Implicit qualified
|
|
import Test.Language.Scalie.Domain.Type.Function.ArgumentModification qualified
|
|
|
|
main :: IO ()
|
|
main = Tasty.defaultMain $ Tasty.testGroup "all"
|
|
[ Tasty.testGroup "Properties"
|
|
[ Test.Data.Map.Implicit.testGroup
|
|
, Test.Language.Scalie.Domain.Type.Function.ArgumentModification.testGroup
|
|
]
|
|
]
|