File: tests.hs

package info (click to toggle)
haskell-math-functions 0.3.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,136 kB
  • sloc: haskell: 2,675; python: 121; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Test.Tasty       (defaultMain,testGroup)
import qualified Tests.Chebyshev
import qualified Tests.Comparison
import qualified Tests.RootFinding
import qualified Tests.SpecFunctions
import qualified Tests.Sum

main :: IO ()
main = defaultMain $ testGroup "math-functions"
  [ Tests.SpecFunctions.tests
  -- FIXME: tests for chebyshev polynomials fail intermittently
  -- , Tests.Chebyshev.tests
  , Tests.Sum.tests
  , Tests.Comparison.tests
  , Tests.RootFinding.tests
  ]