File: SolverQuickCheck.hs

package info (click to toggle)
haskell-cabal-install 2.2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,336 kB
  • sloc: haskell: 43,856; sh: 372; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module SolverQuickCheck where

import Test.Tasty

import qualified UnitTests.Distribution.Solver.Modular.QuickCheck


tests :: TestTree
tests =
  testGroup "Solver QuickCheck"
  [ testGroup "UnitTests.Distribution.Solver.Modular.QuickCheck"
        UnitTests.Distribution.Solver.Modular.QuickCheck.tests
  ]

main :: IO ()
main = defaultMain tests