File: Framework.hs

package info (click to toggle)
haskell-test-framework 0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 176 kB
  • sloc: haskell: 928; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 697 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- | A generic test framework for all types of Haskell test.
--
-- For an example of how to use test-framework, please see
-- <http://github.com/batterseapower/test-framework/raw/master/example/Test/Framework/Example.lhs>
module Test.Framework (
        module Test.Framework.Core,
        module Test.Framework.Options,
        module Test.Framework.Runners.Console,
        module Test.Framework.Runners.Options,
        module Test.Framework.Seed
    ) where

import Test.Framework.Core (Test, TestName, testGroup, plusTestOptions, buildTest, mutuallyExclusive)
import Test.Framework.Options
import Test.Framework.Runners.Console
import Test.Framework.Runners.Options
import Test.Framework.Seed