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