packages feed

primecount-0.1.0.0: test/Main.hs

-- |
-- Copyright   : 2021 Preetham Gujjula
-- License     : BSD-3-Clause
-- Maintainer  : primecount-haskell@mail.preetham.io
-- Stability   : experimental
module Main (main) where

import qualified Test.Math.NumberTheory.Prime.Count (tests)
import Test.Tasty (TestTree, defaultMain, testGroup)

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests = testGroup "" [Test.Math.NumberTheory.Prime.Count.tests]