{-# LANGUAGE CPP #-}
module Test.Cardano.Base.QuickCheck (
withNumTests,
)
where
#if MIN_VERSION_QuickCheck(2, 18, 0)
import Test.QuickCheck (withNumTests)
#else
import Test.QuickCheck (
Property,
Testable,
withMaxSuccess,
)
#endif
#if !MIN_VERSION_QuickCheck(2, 18, 0)
withNumTests :: Testable prop => Int -> prop -> Property
withNumTests :: forall prop. Testable prop => Int -> prop -> Property
withNumTests = Int -> prop -> Property
forall prop. Testable prop => Int -> prop -> Property
withMaxSuccess
#endif