packages feed

numbers-3000.1.0.2: TestSuite.hs

module Main
where

import Test.Framework (
  Test,
  defaultMain,
  )

import Test.Data.Number.BigFloat (bigfloat_properties)

main :: IO ()
main = defaultMain tests

tests :: [Test.Framework.Test]
tests = [ bigfloat_properties ]