File: MemoryUsageTests.hs

package info (click to toggle)
haskell-cabal-install 3.10.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,400 kB
  • sloc: haskell: 52,202; sh: 80; makefile: 9
file content (15 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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