1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
-- | API for test runners
module Test.Tasty.Runners
(
-- * Working with the test tree
TestTree(..)
, foldTestTree
, TreeFold(..)
, trivialFold
, ResourceSpec(..)
, module Test.Tasty.Runners.Reducers
-- * Ingredients
, Ingredient(..)
, Time
, tryIngredients
, ingredientOptions
, ingredientsOptions
-- * Standard console ingredients
-- | NOTE: the exports in this section are deprecated and will be
-- removed in the future. Please import "Test.Tasty.Ingredients.Basic"
-- if you need them.
-- ** Console test reporter
, consoleTestReporter
-- ** Tests list
, listingTests
, ListTests(..)
, testsNames
-- * Command line handling
, optionParser
, suiteOptionParser
, defaultMainWithIngredients
-- * Running tests
, Status(..)
, Result(..)
, Outcome(..)
, FailureReason(..)
, resultSuccessful
, Progress(..)
, StatusMap
, launchTestTree
, NumThreads(..)
-- * Options
, suiteOptions
, coreOptions
-- ** Patterns
, module Test.Tasty.Patterns
)
where
import Test.Tasty.Core
import Test.Tasty.Run
import Test.Tasty.Ingredients
import Test.Tasty.Options.Core
import Test.Tasty.Patterns
import Test.Tasty.CmdLine
import Test.Tasty.Ingredients.Basic
import Test.Tasty.Runners.Reducers
|