File: TestSuite.hs

package info (click to toggle)
haskell-hexpat 0.20.13-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 916 kB
  • sloc: ansic: 12,303; haskell: 3,457; xml: 1,109; makefile: 5; sh: 5
file content (24 lines) | stat: -rw-r--r-- 907 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Main where

import qualified Text.XML.Expat.UnitTests
import qualified Text.XML.Expat.Cursor.Tests
import qualified Text.XML.Expat.Proc.Tests
import qualified Text.XML.Expat.ParseFormat
import qualified Text.XML.Expat.ParallelTest

import Test.Framework (defaultMain, testGroup)

main :: IO ()
main = defaultMain tests
  where tests = [ testGroup "unit tests"
                            Text.XML.Expat.UnitTests.tests
                , testGroup "Text.XML.Expat.Proc"
                            Text.XML.Expat.Proc.Tests.tests
                , testGroup "Text.XML.Expat.Cursor"
                            Text.XML.Expat.Cursor.Tests.tests
                , testGroup "Text.XML.Expat.ParseFormat"
                            Text.XML.Expat.ParseFormat.tests
                , testGroup "Text.XML.Expat.ParallelTest"
                            Text.XML.Expat.ParallelTest.tests
                ]