Copyright | Thomas Tuegel 2010 |
---|---|
License | BSD3 |
Maintainer | cabal-devel@haskell.org |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
This module defines the detailed test suite interface which makes it possible to expose individual tests to Cabal or other test agents.
Synopsis
- data TestInstance = TestInstance {}
- data OptionDescr = OptionDescr {}
- data OptionType
- = OptionFile { }
- | OptionString { }
- | OptionNumber { }
- | OptionBool
- | OptionEnum [String]
- | OptionSet [String]
- | OptionRngSeed
- data Test
- = Test TestInstance
- | Group {
- groupName :: String
- concurrently :: Bool
- groupTests :: [Test]
- | ExtraOptions [OptionDescr] Test
- type Options = [(String, String)]
- data Progress
- data Result
- testGroup :: String -> [Test] -> Test
Documentation
data TestInstance Source #
TestInstance | |
|
data OptionDescr Source #
OptionDescr | |
|
Instances
Eq OptionDescr # | |
Defined in Distribution.TestSuite (==) :: OptionDescr -> OptionDescr -> Bool # (/=) :: OptionDescr -> OptionDescr -> Bool # | |
Read OptionDescr # | |
Defined in Distribution.TestSuite | |
Show OptionDescr # | |
Defined in Distribution.TestSuite |
data OptionType Source #
OptionFile | |
OptionString | |
OptionNumber | |
OptionBool | |
OptionEnum [String] | |
OptionSet [String] | |
OptionRngSeed |
Instances
Eq OptionType # | |
Defined in Distribution.TestSuite (==) :: OptionType -> OptionType -> Bool # (/=) :: OptionType -> OptionType -> Bool # | |
Read OptionType # | |
Defined in Distribution.TestSuite | |
Show OptionType # | |
Defined in Distribution.TestSuite |
Test TestInstance | |
Group | |
| |
ExtraOptions [OptionDescr] Test |