]> Git — Sourcephile - haskell/treemap.git/blob - Data/TreeMap/Test.hs
init
[haskell/treemap.git] / Data / TreeMap / Test.hs
1 {-# LANGUAGE FlexibleInstances #-}
2 {-# LANGUAGE OverloadedStrings #-}
3 {-# LANGUAGE ScopedTypeVariables #-}
4 {-# LANGUAGE TupleSections #-}
5 {-# OPTIONS_GHC -fno-warn-orphans #-}
6 module Test where
7
8 import Data.Function (($))
9 import System.IO (IO)
10 import Test.Tasty
11
12 import qualified Strict.Test as Strict
13
14 main :: IO ()
15 main =
16 defaultMain $
17 testGroup "TreeMap"
18 [ Strict.tests
19 ]