File: Properties.hs

package info (click to toggle)
haskell-unordered-containers 0.2.20-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: haskell: 4,446; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Properties (tests) where

import Test.Tasty (TestTree, testGroup)

import qualified Properties.HashMapLazy
import qualified Properties.HashMapStrict
import qualified Properties.HashSet
import qualified Properties.List

tests :: TestTree
tests = testGroup "Properties"
  [ Properties.HashMapLazy.tests
  , Properties.HashMapStrict.tests
  , Properties.HashSet.tests
  , Properties.List.tests
  ]