File: tests.hs

package info (click to toggle)
haskell-statistics 0.10.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 372 kB
  • ctags: 3
  • sloc: haskell: 2,976; python: 33; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Test.Framework       (defaultMain)

import Tests.Distribution
import Tests.NonparametricTest
import qualified Tests.Transform
import qualified Tests.Function
import qualified Tests.KDE

main :: IO ()
main = defaultMain [ distributionTests 
                   , nonparametricTests
                   , Tests.Transform.tests
                   , Tests.Function.tests
                   , Tests.KDE.tests
                   ]