File: API.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 (21 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
-- | This module exports everything that you need to be able to create your own framework test provider.
-- To create a provider you need to:
--
-- * Create an instance of the 'Testlike' class
--
-- * Create an instance of the 'TestResultlike' class
--
-- * Expose a function that lets people construct 'Test' values using your new instances
module Test.Framework.Providers.API (
        module Test.Framework.Core,
        module Test.Framework.Improving,
        module Test.Framework.Options,
        module Test.Framework.Seed,
        module Test.Framework.Utilities
    ) where

import Test.Framework.Core
import Test.Framework.Improving
import Test.Framework.Options
import Test.Framework.Seed
import Test.Framework.Utilities