File: Main.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 (14 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Main (main) where

import Test.Tasty (defaultMain, testGroup)

import qualified Properties
import qualified Regressions
import qualified Strictness

main :: IO ()
main = defaultMain $ testGroup "All"
  [ Properties.tests
  , Regressions.tests
  , Strictness.tests
  ]