-
Notifications
You must be signed in to change notification settings - Fork 4
/
MuCheck.cabal
93 lines (86 loc) · 3.34 KB
/
MuCheck.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
cabal-version: 3.4
name: MuCheck
version: 0.4.0.1
synopsis: Automated Mutation Testing
description: This package defines a mutation analysis library for haskell
programs. It does this by parsing the haskell source, and
replacing a few of the common haskell functions and operators
with other, but similar operators and functions, and running
the testsuite to check whether the difference has been
detected.
homepage: https://bitbucket.com/osu-testing/mucheck
license: GPL-2.0-or-later
license-file: LICENSE
author: Duc Lee <[email protected]>,
Rahul Gopinath <[email protected]>
maintainer: [email protected]
category: Testing
extra-doc-files: changes.md
tested-with: GHC ==9.2.8 || ==9.4.8 || ==9.6.3 || ==9.8.2
source-repository head
type: git
location: https://github.com/vrthra/mucheck.git
source-repository this
type: git
location: https://github.com/vrthra/mucheck.git
tag: 0.4.0.1
common dependencies
build-depends: base >=4 && <5,
haskell-src-exts >=1.23,
syb >= 0.4.0,
time >= 1.4.0.1,
hint >= 0.3.1.0,
mtl>=2.1.2,
random >= 1.2.1,
directory >= 1.2.0.1,
temporary >= 1.1,
hashable >= 1.2,
hpc >= 0.5.1.1,
template-haskell >= 2.5.0,
library
import: dependencies
exposed-modules: Test.MuCheck
Test.MuCheck.MuOp
Test.MuCheck.Config
Test.MuCheck.Interpreter
Test.MuCheck.Mutation
Test.MuCheck.Utils.Syb
Test.MuCheck.Utils.Common
Test.MuCheck.Utils.Print
Test.MuCheck.TestAdapter
Test.MuCheck.TestAdapter.AssertCheck
Test.MuCheck.TestAdapter.AssertCheckAdapter
Test.MuCheck.AnalysisSummary
Test.MuCheck.Utils.Helpers
Test.MuCheck.Tix
ghc-options: -Wall
default-language: Haskell2010
hs-source-dirs: src
executable mucheck
main-is: Main.hs
ghc-options: -Wall
build-depends: base >=4 && <5,
MuCheck
default-language: Haskell2010
hs-source-dirs: app
executable sample-test
main-is: Examples/Main.hs
other-modules: Examples.AssertCheckTest
build-depends: base >=4 && <5,
MuCheck
default-language: Haskell2010
test-suite spec
import: dependencies
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Here
Test.MuCheck.MutationSpec
Test.MuCheck.MutationSpec.Helpers
Test.MuCheck.Utils.CommonSpec
Test.MuCheck.Utils.PrintSpec
Test.MuCheck.Utils.SybSpec
default-language: Haskell2010
build-depends: hspec>= 2.0,
MuCheck,
build-tool-depends: hspec-discover:hspec-discover