1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
{-# OPTIONS_GHC -Wall -fwarn-tabs #-}
----------------------------------------------------------------
-- 2021.10.17
-- |
-- Module : test/Main
-- Copyright : Copyright (c) 2015--2021 wren gayle romano
-- License : BSD2
-- Maintainer : wren@cpan.org
-- Stability : benchmark
-- Portability : Haskell98
--
-- Run all the basic correctness tests.
----------------------------------------------------------------
module Main (main) where
import qualified Test.Tasty as Tasty
import qualified Integral
import qualified Fractional
----------------------------------------------------------------
----------------------------------------------------------------
main :: IO ()
main = Tasty.defaultMain . Tasty.testGroup "Main" $
[ Integral.tests
, Fractional.tests
]
----------------------------------------------------------------
----------------------------------------------------------- fin.
|