-- 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.3.0.1


-- | Allows HUnit test cases to be used with the test-framework package.
--   
--   For an example of how to use test-framework, please see
--   <a>http://github.com/batterseapower/test-framework/raw/master/example/Test/Framework/Example.lhs</a>
module Test.Framework.Providers.HUnit

-- | Create a <a>Test</a> for a HUnit <a>Assertion</a>
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 Typeable TestCase
instance Testlike TestCaseRunning TestCaseResult TestCase
instance Show TestCaseResult
instance Show TestCaseRunning
instance TestResultlike TestCaseRunning TestCaseResult
