-
Notifications
You must be signed in to change notification settings - Fork 38
/
dub.json
96 lines (89 loc) · 3.11 KB
/
dub.json
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
94
95
96
{
"name": "unit-threaded",
"description": "Advanced multi-threaded unit testing framework with minimal to no boilerplate using built-in unittest blocks",
"authors": ["Atila Neves"],
"homepage": "https://github.com/atilaneves/unit-threaded",
"copyright": "Copyright © 2013, Atila Neves",
"license": "BSD 3-clause",
"targetType": "library",
"toolchainRequirements": {
"frontend": ">=2.089",
},
"-ddoxFilterArgs": [
"--unittest-examples",
"--min-protection=Protected"
],
"-ddoxTool": "scod",
"dependencies": {
":from": "*",
":exception": "*",
":assertions": "*",
":runner": "*",
":mocks": "*",
":integration": "*",
":property": "*",
":behave": "*"
},
"subPackages": [
"./subpackages/from",
"./subpackages/exception",
"./subpackages/assertions",
"./subpackages/runner",
"./subpackages/mocks",
"./subpackages/integration",
"./subpackages/property",
"./subpackages/autorunner",
"./subpackages/behave"
],
"configurations": [
{
"name": "library",
"dflags": ["-preview=dip1000"]
},
{ "name": "nodips" },
{
"name": "unittest",
"targetType": "executable",
"targetName": "ut_pass",
"sourcePaths": ["source", "gen/source", "tests/unit_threaded", "tests/examples/pass"],
"importPaths": ["source"],
"mainSourceFile": "example/example_pass.d",
"dflags": ["-preview=dip1000", "-preview=dip1008"],
"versions": ["testing_unit_threaded"]
},
{
"name": "unittest-unthreaded",
"targetType": "executable",
"targetName": "ut_pass",
"sourcePaths": ["source", "gen/source", "tests/unit_threaded", "tests/examples/pass"],
"mainSourceFile": "example/example_pass.d",
"dflags": ["-preview=dip1000", "-preview=dip1008"],
"versions": ["testing_unit_threaded", "unitUnthreaded"]
},
{
"name": "unittest-light",
"targetType": "executable",
"targetName": "ut_pass",
"sourcePaths": ["source", "gen/source", "tests/unit_threaded", "tests/examples/pass"],
"mainSourceFile": "example/example_pass.d",
"dflags": ["-preview=dip1000", "-preview=dip1008"],
"versions": ["testing_unit_threaded", "unitThreadedLight", "unitUnthreaded"]
},
{
"name": "unittest-fail",
"targetType": "executable",
"targetName": "ut_fail",
"sourcePaths": ["tests/examples/pass", "tests/examples/fail/"],
"mainSourceFile": "example/example_fail.d",
"versions": ["testing_unit_threaded"]
},
{
"name": "gen_ut_main",
"targetType": "executable",
"targetName": "gen_ut_main",
"sourcePaths": ["gen/source"],
"importPaths": ["gen/source"],
"mainSourceFile": "gen/gen_ut_main.d"
}
]
}