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