-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | HUnit support for the test-framework package. -- -- HUnit support for the test-framework package. @package test-framework-hunit @version 0.2.3 -- | Allows HUnit test cases to be used with the test-framework package. -- -- For an example of how to use test-framework, please see -- http://github.com/batterseapower/test-framework/raw/master/example/Test/Framework/Example.lhs module Test.Framework.Providers.HUnit -- | Create a Test for a HUnit Assertion testCase :: TestName -> Assertion -> Test -- | Adapt an existing HUnit test into a list of test-framework tests. This -- is useful when migrating your existing HUnit test suite to -- test-framework. hUnitTestToTests :: Test -> [Test] instance Testlike TestCaseRunning TestCaseResult TestCase instance Show TestCaseResult instance Show TestCaseRunning instance TestResultlike TestCaseRunning TestCaseResult