File: API.hs

package info (click to toggle)
haskell-test-framework 0.8.2.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: haskell: 1,032; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
-- | This module exports everything that you need to be able to create your own test runner.
module Test.Framework.Runners.API (
        module Test.Framework.Runners.Options,
        TestRunner(..), runTestTree
    ) where

import Test.Framework.Runners.Options
import Test.Framework.Runners.Core