-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathRunners.hs
More file actions
67 lines (65 loc) · 1.47 KB
/
Runners.hs
File metadata and controls
67 lines (65 loc) · 1.47 KB
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
58
59
60
61
62
63
64
65
66
67
-- | API for test runners.
--
-- @since 0.1
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
, parseOptions
, optionParser
, suiteOptionParser
, defaultMainWithIngredients
-- * Running tests
, Status(..)
, Result(..)
, attachExtraData
, lookupExtraData
, Outcome(..)
, FailureReason(..)
, resultSuccessful
, Progress(..)
, emptyProgress
, StatusMap
, launchTestTree
, NumThreads(..)
, DependencyException(..)
-- * Options
, suiteOptions
, coreOptions
-- ** Patterns
, module Test.Tasty.Patterns
-- * Utilities
, module Test.Tasty.Runners.Utils
)
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
import Test.Tasty.Runners.Utils