-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhedgehog-inline-csharp-testing.cabal
68 lines (57 loc) · 1.38 KB
/
hedgehog-inline-csharp-testing.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
version: 0
name:
hedgehog-inline-csharp-testing
author:
Nikos Baxevanis
maintainer:
Nikos Baxevanis <[email protected]>
homepage:
https://github.com/moodmosaic/hedgehog-inline-csharp-testing
synopsis:
Hedgehog's model-based state machine testing from C#.
description:
Example of using Hedgehog's model-based state machine testing together with
C# via clr-inline.
category:
Testing
license:
BSD3
license-file:
LICENSE
cabal-version:
>= 1.8
build-type:
Simple
tested-with:
GHC == 8.2.2
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/moodmosaic/hedgehog-inline-csharp-testing.git
library
build-depends:
base >= 3 && < 5
, clr-inline >= 0.2 && < 0.3
, template-haskell >= 2.10 && < 2.15
ghc-options:
-Wall
hs-source-dirs:
src
exposed-modules:
CircularBuffer
test-suite test
type:
exitcode-stdio-1.0
main-is:
test.hs
ghc-options:
-Wall -threaded -O2
hs-source-dirs:
test
build-depends:
hedgehog-inline-csharp-testing
, hedgehog >= 0.6.1 && < 0.7
, template-haskell >= 2.10 && < 2.15
, clr-inline >= 0.2.0.1 && < 0.3
, base >= 3 && < 5