tasty-0.10.0.2: Modern and extensible testing framework

Safe HaskellNone
LanguageHaskell2010

Test.Tasty.Ingredients.Basic

Contents

Description

This module exports the basic ingredients defined in the tasty packages.

Note that if defaultIngredients from Test.Tasty suits your needs, use that instead of importing this module.

Synopsis

Console test reporter

consoleTestReporter :: Ingredient Source

A simple console UI

newtype Quiet Source

Do not print test results (see README for details)

Constructors

Quiet Bool 

Listing tests

listingTests :: Ingredient Source

The ingredient that provides the test listing functionality

newtype ListTests Source

This option, when set to True, specifies that we should run in the «list tests» mode

Constructors

ListTests Bool 

testsNames :: OptionSet -> TestTree -> [TestName] Source

Obtain the list of all tests in the suite

Adding options

includingOptions :: [OptionDescription] -> Ingredient Source

This ingredient doesn't do anything apart from registering additional options.

The option values can be accessed using askOption.