]> gitweb.michael.orlitzky.com - spline3.git/blob - test/TestSuite.hs
Re-enable all of the tests for (2.7).
[spline3.git] / test / TestSuite.hs
1 import Test.HUnit
2 import Test.QuickCheck
3
4 import Tests.Cardinal
5 import Tests.Cube as TC
6 import Tests.Grid
7 import Tests.Misc
8 import Tests.Tetrahedron as TT
9
10 -- The list of HUnit tests.
11 test_suite = TestList (concat [grid_tests,
12 misc_tests,
13 tetrahedron_tests])
14
15 main :: IO ()
16 main = do
17 putStrLn "HUnit"
18 putStrLn "-----"
19 runTestTT test_suite
20 putStrLn ""
21 putStrLn "QuickCheck"
22 putStrLn "----------"
23 let qc_args = stdArgs { maxSuccess = 100,
24 maxDiscard = 500,
25 maxSize = 100 }
26
27
28 putStrLn "\nGrid Tests\n"
29
30 putStrLn "\nCube Tests\n"
31
32 putStr "prop_all_volumes_positive... "
33 quickCheckWith qc_args prop_all_volumes_positive
34
35 -- putStr "prop_tetrahedron0_volumes_exact... "
36 -- quickCheckWith qc_args prop_tetrahedron0_volumes_exact
37
38 -- putStr "prop_tetrahedron1_volumes_exact... "
39 -- quickCheckWith qc_args prop_tetrahedron1_volumes_exact
40
41 -- putStr "prop_tetrahedron2_volumes_exact... "
42 -- quickCheckWith qc_args prop_tetrahedron2_volumes_exact
43
44 -- putStr "prop_tetrahedron3_volumes_exact... "
45 -- quickCheckWith qc_args prop_tetrahedron3_volumes_exact
46
47 -- putStr "prop_tetrahedron4_volumes_exact... "
48 -- quickCheckWith qc_args prop_tetrahedron4_volumes_exact
49
50 -- putStr "prop_tetrahedron4_volumes_exact... "
51 -- quickCheckWith qc_args prop_tetrahedron4_volumes_exact
52
53 -- putStr "prop_tetrahedron5_volumes_exact... "
54 -- quickCheckWith qc_args prop_tetrahedron5_volumes_exact
55
56 -- putStr "prop_tetrahedron6_volumes_exact... "
57 -- quickCheckWith qc_args prop_tetrahedron6_volumes_exact
58
59 -- putStr "prop_tetrahedron7_volumes_exact... "
60 -- quickCheckWith qc_args prop_tetrahedron7_volumes_exact
61
62 putStr "prop_tetrahedron0_volumes_positive... "
63 quickCheckWith qc_args prop_tetrahedron0_volumes_positive
64
65 putStr "prop_tetrahedron1_volumes_positive... "
66 quickCheckWith qc_args prop_tetrahedron1_volumes_positive
67
68 putStr "prop_tetrahedron2_volumes_positive... "
69 quickCheckWith qc_args prop_tetrahedron2_volumes_positive
70
71 putStr "prop_tetrahedron3_volumes_positive... "
72 quickCheckWith qc_args prop_tetrahedron3_volumes_positive
73
74 putStr "prop_tetrahedron4_volumes_positive... "
75 quickCheckWith qc_args prop_tetrahedron4_volumes_positive
76
77 putStr "prop_tetrahedron5_volumes_positive... "
78 quickCheckWith qc_args prop_tetrahedron5_volumes_positive
79
80 putStr "prop_tetrahedron6_volumes_positive... "
81 quickCheckWith qc_args prop_tetrahedron6_volumes_positive
82
83 putStr "prop_tetrahedron7_volumes_positive... "
84 quickCheckWith qc_args prop_tetrahedron7_volumes_positive
85
86 putStr "prop_tetrahedron8_volumes_positive... "
87 quickCheckWith qc_args prop_tetrahedron8_volumes_positive
88
89 putStr "prop_tetrahedron9_volumes_positive... "
90 quickCheckWith qc_args prop_tetrahedron9_volumes_positive
91
92 putStr "prop_tetrahedron10_volumes_positive... "
93 quickCheckWith qc_args prop_tetrahedron10_volumes_positive
94
95 putStr "prop_tetrahedron11_volumes_positive... "
96 quickCheckWith qc_args prop_tetrahedron11_volumes_positive
97
98 putStr "prop_tetrahedron12_volumes_positive... "
99 quickCheckWith qc_args prop_tetrahedron12_volumes_positive
100
101 putStr "prop_tetrahedron13_volumes_positive... "
102 quickCheckWith qc_args prop_tetrahedron13_volumes_positive
103
104 putStr "prop_tetrahedron14_volumes_positive... "
105 quickCheckWith qc_args prop_tetrahedron14_volumes_positive
106
107 putStr "prop_tetrahedron15_volumes_positive... "
108 quickCheckWith qc_args prop_tetrahedron15_volumes_positive
109
110 putStr "prop_tetrahedron16_volumes_positive... "
111 quickCheckWith qc_args prop_tetrahedron16_volumes_positive
112
113 putStr "prop_tetrahedron17_volumes_positive... "
114 quickCheckWith qc_args prop_tetrahedron17_volumes_positive
115
116 putStr "prop_tetrahedron18_volumes_positive... "
117 quickCheckWith qc_args prop_tetrahedron18_volumes_positive
118
119 putStr "prop_tetrahedron19_volumes_positive... "
120 quickCheckWith qc_args prop_tetrahedron19_volumes_positive
121
122 putStr "prop_tetrahedron20_volumes_positive... "
123 quickCheckWith qc_args prop_tetrahedron20_volumes_positive
124
125 putStr "prop_tetrahedron21_volumes_positive... "
126 quickCheckWith qc_args prop_tetrahedron21_volumes_positive
127
128 putStr "prop_tetrahedron22_volumes_positive... "
129 quickCheckWith qc_args prop_tetrahedron22_volumes_positive
130
131 putStr "prop_tetrahedron23_volumes_positive... "
132 quickCheckWith qc_args prop_tetrahedron23_volumes_positive
133
134 putStr "prop_v0_all_equal... "
135 quickCheckWith qc_args prop_v0_all_equal
136
137 -- putStrLn "\np. 78, (2.5)\n"
138
139 -- putStr "prop_cijk1_identity... "
140 -- quickCheckWith qc_args prop_cijk1_identity
141
142
143 -- putStrLn "\np. 79, (2.6)\n"
144
145 putStr "prop_c0120_identity1... "
146 quickCheckWith qc_args TC.prop_c0120_identity1
147
148 putStr "prop_c0210_identity1... "
149 quickCheckWith qc_args TC.prop_c0210_identity1
150
151 putStr "prop_c0300_identity1... "
152 quickCheckWith qc_args TC.prop_c0300_identity1
153
154 putStr "prop_c1110_identity... "
155 quickCheckWith qc_args TC.prop_c1110_identity
156
157 putStr "prop_c1200_identity1... "
158 quickCheckWith qc_args TC.prop_c1200_identity1
159
160 putStr "prop_c2100_identity1... "
161 quickCheckWith qc_args TC.prop_c2100_identity1
162
163 putStrLn "\np. 79, (2.7)\n"
164
165 putStr "prop_c0102_identity1... "
166 quickCheckWith qc_args TC.prop_c0102_identity1
167
168 putStr "prop_c0201_identity1... "
169 quickCheckWith qc_args TC.prop_c0201_identity1
170
171 putStr "prop_c0300_identity2... "
172 quickCheckWith qc_args TC.prop_c0300_identity2
173
174 putStr "prop_c1101_identity... "
175 quickCheckWith qc_args TC.prop_c1101_identity
176
177 putStr "prop_c1200_identity2... "
178 quickCheckWith qc_args TC.prop_c1200_identity2
179
180 putStr "prop_c2100_identity2... "
181 quickCheckWith qc_args TC.prop_c2100_identity2
182
183 -- putStrLn "\np. 79, (2.8)\n"
184
185 -- putStr "prop_c3000_identity... "
186 -- quickCheckWith qc_args TF.prop_c3000_identity
187
188 -- putStr "prop_c2010_identity... "
189 -- quickCheckWith qc_args TF.prop_c2010_identity
190
191 -- putStr "prop_c2001_identity... "
192 -- quickCheckWith qc_args TF.prop_c2001_identity
193
194 -- putStr "prop_c1020_identity... "
195 -- quickCheckWith qc_args TF.prop_c1020_identity
196
197 -- putStr "prop_c1002_identity... "
198 -- quickCheckWith qc_args TF.prop_c1002_identity
199
200 -- putStr "prop_c1011_identity... "
201 -- quickCheckWith qc_args TF.prop_c1011_identity
202
203 -- putStrLn "\np. 80, (2.9)\n"
204
205 -- putStr "prop_c0120_identity2... "
206 -- quickCheckWith qc_args TF.prop_c0120_identity2
207
208 -- putStr "prop_c0102_identity2... "
209 -- quickCheckWith qc_args TF.prop_c0102_identity2
210
211 -- putStr "prop_c0111_identity... "
212 -- quickCheckWith qc_args TF.prop_c0111_identity
213
214 -- putStr "prop_c0210_identity2... "
215 -- quickCheckWith qc_args TF.prop_c0210_identity2
216
217 -- putStr "prop_c0201_identity2... "
218 -- quickCheckWith qc_args TF.prop_c0201_identity2
219
220 -- putStr "prop_c0300_identity3... "
221 -- quickCheckWith qc_args TF.prop_c0300_identity3
222
223
224 putStrLn "\nMisc Tests\n"
225
226 putStr "prop_factorial_greater... "
227 quickCheckWith qc_args prop_factorial_greater
228
229 putStrLn "\nTetrahedron Tests\n"
230
231 putStr "prop_b0_v0_always_unity... "
232 quickCheckWith qc_args prop_b0_v0_always_unity
233
234 putStr "prop_b0_v1_always_zero... "
235 quickCheckWith qc_args prop_b0_v1_always_zero
236
237 putStr "prop_b0_v2_always_zero... "
238 quickCheckWith qc_args prop_b0_v2_always_zero
239
240 putStr "prop_b0_v3_always_zero... "
241 quickCheckWith qc_args prop_b0_v3_always_zero
242
243 putStr "prop_b1_v1_always_unity... "
244 quickCheckWith qc_args prop_b1_v1_always_unity
245
246 putStr "prop_b1_v0_always_zero... "
247 quickCheckWith qc_args prop_b1_v0_always_zero
248
249 putStr "prop_b1_v2_always_zero... "
250 quickCheckWith qc_args prop_b1_v2_always_zero
251
252 putStr "prop_b1_v3_always_zero... "
253 quickCheckWith qc_args prop_b1_v3_always_zero
254
255 putStr "prop_b2_v2_always_unity... "
256 quickCheckWith qc_args prop_b2_v2_always_unity
257
258 putStr "prop_b2_v0_always_zero... "
259 quickCheckWith qc_args prop_b2_v0_always_zero
260
261 putStr "prop_b2_v1_always_zero... "
262 quickCheckWith qc_args prop_b2_v1_always_zero
263
264 putStr "prop_b2_v3_always_zero... "
265 quickCheckWith qc_args prop_b2_v3_always_zero
266
267 putStr "prop_b3_v3_always_unity... "
268 quickCheckWith qc_args prop_b3_v3_always_unity
269
270 putStr "prop_b3_v0_always_zero... "
271 quickCheckWith qc_args prop_b3_v0_always_zero
272
273 putStr "prop_b3_v1_always_zero... "
274 quickCheckWith qc_args prop_b3_v1_always_zero
275
276 putStr "prop_b3_v2_always_zero... "
277 quickCheckWith qc_args prop_b3_v2_always_zero
278
279 putStrLn "\np. 78, (2.4)\n"
280
281 putStr "prop_c3000_identity... "
282 quickCheckWith qc_args TT.prop_c3000_identity
283
284 putStr "prop_c2100_identity... "
285 quickCheckWith qc_args TT.prop_c2100_identity
286
287 putStr "prop_c1110_identity... "
288 quickCheckWith qc_args TT.prop_c1110_identity
289
290
291 putStrLn "\nCardinal Tests\n"
292
293 putStr "prop_ccwx_rotation_changes_direction... "
294 quickCheckWith qc_args prop_ccwx_rotation_changes_direction
295
296 putStr "prop_cwx_rotation_changes_direction... "
297 quickCheckWith qc_args prop_cwx_rotation_changes_direction
298
299 putStr "prop_four_cwx_is_identity... "
300 quickCheckWith qc_args prop_four_cwx_is_identity
301
302 putStr "prop_four_ccwx_is_identity... "
303 quickCheckWith qc_args prop_four_ccwx_is_identity
304
305 putStr "prop_four_cwy_is_identity... "
306 quickCheckWith qc_args prop_four_cwy_is_identity
307
308 putStr "prop_four_ccwy_is_identity... "
309 quickCheckWith qc_args prop_four_ccwy_is_identity
310
311 putStr "prop_four_cwz_is_identity... "
312 quickCheckWith qc_args prop_four_cwz_is_identity
313
314 putStr "prop_four_ccwz_is_identity... "
315 quickCheckWith qc_args prop_four_ccwz_is_identity
316
317 return ()