tasty-autocollect-0.4.0: Autocollection of tasty tests.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Test.Tasty.AutoCollect.Config

Synopsis

Documentation

data AutoCollectConfig' f Source #

Configuration for generating the Main module, specified as a block comment.

Constructors

AutoCollectConfig 

Fields

Instances

Instances details
Monoid AutoCollectConfigPartial Source # 
Instance details

Defined in Test.Tasty.AutoCollect.Config

Semigroup AutoCollectConfigPartial Source #

Config on RHS overrides config on LHS.

Instance details

Defined in Test.Tasty.AutoCollect.Config

Show AutoCollectConfig Source # 
Instance details

Defined in Test.Tasty.AutoCollect.Config

Show AutoCollectConfigPartial Source # 
Instance details

Defined in Test.Tasty.AutoCollect.Config

Eq AutoCollectConfig Source # 
Instance details

Defined in Test.Tasty.AutoCollect.Config

Eq AutoCollectConfigPartial Source # 
Instance details

Defined in Test.Tasty.AutoCollect.Config

data AutoCollectGroupType Source #

Constructors

AutoCollectGroupFlat

All tests will be flattened like

test1
test2
test3
AutoCollectGroupModules

Tests will be grouped by module

MyModule.MyTest1
  test1
  test2
MyModule.MyTest2
  test3
AutoCollectGroupTree

Test modules will be grouped as a tree

MyModule
  MyTest1
    test1
    test2
  MyTest2
    test3