File: Test.hs

package info (click to toggle)
haskell-integer-logarithms 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 112 kB
  • sloc: haskell: 491; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
import Test.Tasty

import qualified Math.NumberTheory.LogarithmsTests as Logarithms

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests = testGroup "All"
    [ Logarithms.testSuite
    ]