Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. assertListsEqualAsSetsVerbose :: (Eq a, Show a, HasCallStack) => String -> [a] -> [a] -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two given lists are not equal when considered as sets, supplying an additional error message.

  2. assertNotEqual :: (Eq a, Show a, HasCallStack) => a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal. Use if a is an instance of Show but not of Pretty.

  3. assertNotEqualNoShow :: (Eq a, HasCallStack) => a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal. Use if a is neither an instance of Show nor of Pretty.

  4. assertNotEqualNoShowVerbose :: (Eq a, HasCallStack) => String -> a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal, supplying an additional message. Use if a is neither an instance of Show nor of Pretty.

  5. assertNotEqualPretty :: (Eq a, Pretty a, HasCallStack) => a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal. Use if a is an instance of Pretty.

  6. assertNotEqualPrettyVerbose :: (Eq a, Pretty a, HasCallStack) => String -> a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal, supplying an additional message. Use if a is an instance of Pretty.

  7. assertNotEqualVerbose :: (Eq a, Show a, HasCallStack) => String -> a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal, supplying an additional message. Use if a is an instance of Show but not of Pretty.

  8. gassertEqual :: (Eq a, Show a, AssertM m, HasCallStack) => a -> a -> m ()

    HTF Test.Framework.HUnitWrapper

    Fail in some AssertM monad if the two values of type a are not equal. Use if a is an instance of Show but not of Pretty.

  9. gassertEqualNoShow :: (Eq a, AssertM m, HasCallStack) => a -> a -> m ()

    HTF Test.Framework.HUnitWrapper

    Fail in some AssertM monad if the two values of type a are not equal. Use if a is neither an instance of Show nor of Pretty.

  10. gassertEqualNoShowVerbose :: (Eq a, AssertM m, HasCallStack) => String -> a -> a -> m ()

    HTF Test.Framework.HUnitWrapper

    Fail in some AssertM monad if the two values of type a are not equal, supplying an additional message. Use if a is neither an instance of Show nor of Pretty.

Page 365 of many | Previous | Next