packages feed

codecov-haskell-0.1.0: test/TestAll.hs

module Main where

import System.Exit ( exitFailure, exitSuccess )
import Test.HUnit
import TestCodecovHaskellLix
import TestCodecovHaskellUtil

allTests :: [Test]
allTests = [testLix, testUtil]

main :: IO Counts
main = do
    cnt <- runTestTT (test allTests)
    if errors cnt + failures cnt == 0
        then exitSuccess
        else exitFailure