X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FAssertions.hs;h=33b79b9b8ba68bb3dabc2002ad284498705bc335;hb=02a34bf79286cd63edcc62e8610fe045feb1dd68;hp=44d793b989be2f4eb83955995adfca976e4cfb9b;hpb=58cf11569acb270995d2de924dda03ef526647e2;p=spline3.git diff --git a/src/Assertions.hs b/src/Assertions.hs index 44d793b..33b79b9 100644 --- a/src/Assertions.hs +++ b/src/Assertions.hs @@ -11,7 +11,7 @@ import Comparisons import Point -- | An HUnit assertion that wraps the almost_equals function. Stolen --- from the definition of 'assertEqual' in Test/HUnit/Base.hs. +-- from the definition of 'assertEqual' in Test\/HUnit\/Base.hs. assertAlmostEqual :: String -> Double -> Double -> Assertion assertAlmostEqual preface expected actual = unless (actual ~= expected) (assertFailure msg) @@ -20,9 +20,13 @@ assertAlmostEqual preface expected actual = -- | An HUnit assertion that wraps the is_close function. Stolen --- from the definition of 'assertEqual' in Test/HUnit/Base.hs. +-- from the definition of 'assertEqual' in Test\/HUnit\/Base.hs. assertClose :: String -> Point -> Point -> Assertion assertClose preface expected actual = unless (actual `is_close` expected) (assertFailure msg) where msg = (if null preface then "" else preface ++ "\n") ++ "expected: " ++ show expected ++ "\n but got: " ++ show actual + +-- | It's asinine that this doesn't exist already. +assertTrue :: String -> Bool -> Assertion +assertTrue = assertBool