packages feed

webgear-server-1.0.0: test/Main.hs

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" []