-----------------------------------------------------------------------------
-- |
-- Module : Debug.QuickCheck.Batch
-- Copyright : (c) Andy Gill 2001
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : deprecated
-- Portability : non-portable (uses Control.Exception, Control.Concurrent)
--
-- This is a batch driver for running QuickCheck (GHC only).
--
-----------------------------------------------------------------------------
module Debug.QuickCheck.Batch
{-# DEPRECATED "Use module Test.QuickCheck.Batch instead" #-}
( module Test.QuickCheck.Batch
) where
import Test.QuickCheck.Batch
|