-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolytest.toml
105 lines (70 loc) · 3.06 KB
/
polytest.toml
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
97
98
99
100
101
102
103
104
105
name = "Shapes Test Plan"
package_name = "shapes"
# Test Suites
[suite.circle]
desc = "A circle is a shape defined by all points on a plane that are equidistant from a given point"
groups = ["shape", "circle"]
[suite.rectangle]
desc = "A rectangle is a polygon with four right angles"
groups = ["shape", "polygon", "rectangle"]
[suite.triangle]
desc = "A triangle is a polygon with three edges"
groups = ["shape", "polygon"]
# Test Group: Polygon
[group.polygon]
desc = "Tests that only apply to polygons"
[group.polygon.test.vertex_count]
desc = "A polygon should accurately count the number of verticies it contains"
[group.polygon.test.edge_count]
desc = "A polygon should accurately count the number of edges it contains"
# Test Group: Rectangle
[group.rectangle]
desc = "Tests that apply only to rectangles, a subset of polygons"
[group.rectangle.test.is_square]
desc = "A rectangle should be able to accurately determine if it is a square"
# Test Group: Shape
[group.shape]
desc = "Tests that apply to any shape. A shape is a polygon OR a circle"
[group.shape.test.area]
desc = "A shape should be able to accurately calculate its area"
[group.shape.test.perimeter]
desc = "A shape should be able to accurately calculate its perimeter (or circumference)"
# Test Group: Circle
[group.circle]
desc = "Tests that only apply to a circle"
[group.circle.test.radius]
desc = "A circle should be able to accurately calculate its radius"
group = "circle"
[group.circle.test.diameter]
desc = "A circle should be able to accurately calculate its diameter"
group = "circle"
# Test Targets
[target.pytest]
out_dir = "./implementations/python/tests"
[target.bun]
out_dir = "./implementations/bun/__tests__"
[target.swift]
out_dir = "./implementations/swift/Tests/ShapesTests"
# The default runner is macOS, which defines most of what we need
# The iOS and Catalyst runners will inherit all the configuration from the default macOS runner, except for the command we defined
[target.swift.runner.iOS]
command = "xcodebuild -scheme {{ package_name | convert_case('Pascal') }} test -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest'"
[target.swift.runner.Catalyst]
command = "xcodebuild -scheme {{ package_name | convert_case('Pascal') }} test -destination 'platform=macOS,variant=Mac Catalyst'"
# Custom Test Target
[custom_target.minitest_unit]
out_dir = "./implementations/ruby/test"
suite_file_name_template = "test_{{ suite.name | convert_case('Snake') }}.rb"
test_regex_template = "def test_{{ name | convert_case('Snake') }}"
template_dir = "./templates/minitest_unit"
[custom_target.minitest_unit.runner."rake test"]
command = "bundle exec rake test A='--verbose'"
fail_regex_template = "Test{{ suite_name | convert_case('Pascal') }}#test_{{ test_name }} = \\d+\\.\\d+ s = (F|E)"
pass_regex_template = "Test{{ suite_name | convert_case('Pascal') }}#test_{{ test_name }} = \\d+\\.\\d+ s = \\."
# Document
[document.markdown]
out_file = "./documents/plan.md"
# Custom Document
[document.test_cases_csv]
out_file = "./documents/test_cases.csv"
template = "./templates/test_cases.csv.jinja"