planet-mitchell-test-0.0.0: src/Test.hs
module Test
( -- * Running tests
defaultMain
, defaultMainWithIngredients
, defaultIngredients
, rerunningTests
, testGroup
-- * Unit tests
, testCase
, shouldBe
, shouldSatisfy
, shouldReturn
-- * Property tests
, testProperty
, module Hedgehog
) where
import Hedgehog
import Test.Hspec.Expectations
import Test.Tasty
import Test.Tasty.Hedgehog
import Test.Tasty.HUnit
import Test.Tasty.Ingredients.Rerun (rerunningTests)