File: MemoryUsageTests.hs

package info (click to toggle)
haskell-cabal-install 3.12.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,552 kB
  • sloc: haskell: 65,985; sh: 80; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 349 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Main where

import Test.Tasty

import qualified UnitTests.Distribution.Solver.Modular.MemoryUsage

tests :: TestTree
tests =
  testGroup
    "Memory Usage"
    [ testGroup
        "UnitTests.Distribution.Solver.Modular.MemoryUsage"
        UnitTests.Distribution.Solver.Modular.MemoryUsage.tests
    ]

main :: IO ()
main = defaultMain tests