| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Test.Mutagen
Description
Convenience module re-exporting all public test modules.
Synopsis
- module Test.Mutagen.Config
- mutagen :: Testable p => p -> IO ()
- mutagenVerbose :: Testable p => p -> IO ()
- mutagenVerboseReport :: Testable p => p -> IO Report
- mutagenReport :: Testable p => p -> IO Report
- mutagenWith :: Testable p => Config -> p -> IO ()
- mutagenWithReport :: Testable p => Config -> p -> IO Report
- module Test.Mutagen.Exception
- module Test.Mutagen.Fragment
- module Test.Mutagen.Lazy
- module Test.Mutagen.Mutant
- module Test.Mutagen.Mutation
- module Test.Mutagen.Property
- module Test.Mutagen.Report
- data TRACE = TRACE
- module Test.QuickCheck.Arbitrary
- module Test.QuickCheck.Gen
Documentation
module Test.Mutagen.Config
mutagenVerbose :: Testable p => p -> IO () Source #
Run Mutagen with default configuration in verbose mode.
mutagenVerboseReport :: Testable p => p -> IO Report Source #
Run Mutagen with default configuration in verbose mode, returning a report.
mutagenReport :: Testable p => p -> IO Report Source #
Run Mutagen with default configuration, returning a report.
mutagenWithReport :: Testable p => Config -> p -> IO Report Source #
Run Mutagen with a custom configuration, returning a report.
module Test.Mutagen.Exception
module Test.Mutagen.Fragment
module Test.Mutagen.Lazy
module Test.Mutagen.Mutant
module Test.Mutagen.Mutation
module Test.Mutagen.Property
module Test.Mutagen.Report
Tell the tracer plugin to trace this function.
For example:
{-# ANN myFunction TRACE #-}
myFunction :: Int -> Int
myFunction x = x + 1
Constructors
| TRACE |
Instances
| Data TRACE Source # | |
Defined in Test.Mutagen.Tracer.Annotation Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> TRACE -> c TRACE # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c TRACE # dataTypeOf :: TRACE -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c TRACE) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c TRACE) # gmapT :: (forall b. Data b => b -> b) -> TRACE -> TRACE # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> TRACE -> r # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> TRACE -> r # gmapQ :: (forall d. Data d => d -> u) -> TRACE -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> TRACE -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> TRACE -> m TRACE # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> TRACE -> m TRACE # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> TRACE -> m TRACE # | |
module Test.QuickCheck.Arbitrary
module Test.QuickCheck.Gen