packages feed

webgear-server-0.1.0: test/Main.hs

-- |
-- Copyright        : (c) Raghu Kaippully, 2020
-- License          : MPL-2.0
-- Maintainer       : rkaippully@gmail.com
--
module Main where

import Test.Tasty (TestTree, defaultMain, testGroup)

import Properties (propertyTests)
import Unit (unitTests)


main :: IO ()
main = defaultMain allTests

allTests :: TestTree
allTests = testGroup "Tests" [unitTests, propertyTests, systemTests]

systemTests :: TestTree
systemTests = testGroup "System Tests" []