1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | import unittest |
---|
4 | from math import sqrt |
---|
5 | |
---|
6 | from domain import * |
---|
7 | from config import epsilon |
---|
8 | from Numeric import allclose, array, ones, Float |
---|
9 | |
---|
10 | |
---|
11 | def add_to_verts(tag, elements, domain): |
---|
12 | if tag == "mound": |
---|
13 | domain.test = "Mound" |
---|
14 | |
---|
15 | |
---|
16 | def set_bottom_friction(tag, elements, domain): |
---|
17 | if tag == "bottom": |
---|
18 | #print 'bottom - indices',elements |
---|
19 | domain.set_quantity('friction', 0.09, indices = elements) |
---|
20 | |
---|
21 | def set_top_friction(tag, elements, domain): |
---|
22 | if tag == "top": |
---|
23 | #print 'top - indices',elements |
---|
24 | domain.set_quantity('friction', 1., indices = elements) |
---|
25 | |
---|
26 | |
---|
27 | def set_all_friction(tag, elements, domain): |
---|
28 | if tag == "all": |
---|
29 | new_values = domain.get_quantity('friction', indices = elements) + 10.0 |
---|
30 | |
---|
31 | domain.set_quantity('friction', new_values, indices = elements) |
---|
32 | |
---|
33 | |
---|
34 | class Test_Domain(unittest.TestCase): |
---|
35 | def setUp(self): |
---|
36 | pass |
---|
37 | |
---|
38 | |
---|
39 | def tearDown(self): |
---|
40 | pass |
---|
41 | |
---|
42 | |
---|
43 | def test_simple(self): |
---|
44 | a = [0.0, 0.0] |
---|
45 | b = [0.0, 2.0] |
---|
46 | c = [2.0,0.0] |
---|
47 | d = [0.0, 4.0] |
---|
48 | e = [2.0, 2.0] |
---|
49 | f = [4.0,0.0] |
---|
50 | |
---|
51 | points = [a, b, c, d, e, f] |
---|
52 | #bac, bce, ecf, dbe, daf, dae |
---|
53 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4]] |
---|
54 | |
---|
55 | conserved_quantities = ['stage', 'xmomentum', 'ymomentum'] |
---|
56 | other_quantities = ['elevation', 'friction'] |
---|
57 | |
---|
58 | domain = Domain(points, vertices, None, |
---|
59 | conserved_quantities, other_quantities) |
---|
60 | domain.check_integrity() |
---|
61 | |
---|
62 | for name in conserved_quantities + other_quantities: |
---|
63 | assert domain.quantities.has_key(name) |
---|
64 | |
---|
65 | |
---|
66 | assert domain.get_conserved_quantities(0, edge=1) == 0. |
---|
67 | |
---|
68 | |
---|
69 | def test_conserved_quantities(self): |
---|
70 | |
---|
71 | a = [0.0, 0.0] |
---|
72 | b = [0.0, 2.0] |
---|
73 | c = [2.0,0.0] |
---|
74 | d = [0.0, 4.0] |
---|
75 | e = [2.0, 2.0] |
---|
76 | f = [4.0,0.0] |
---|
77 | |
---|
78 | points = [a, b, c, d, e, f] |
---|
79 | #bac, bce, ecf, dbe, daf, dae |
---|
80 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4]] |
---|
81 | |
---|
82 | domain = Domain(points, vertices, boundary=None, |
---|
83 | conserved_quantities =\ |
---|
84 | ['stage', 'xmomentum', 'ymomentum']) |
---|
85 | |
---|
86 | |
---|
87 | domain.set_quantity('stage', [[1,2,3], [5,5,5], |
---|
88 | [0,0,9], [-6, 3, 3]]) |
---|
89 | |
---|
90 | domain.set_quantity('xmomentum', [[1,2,3], [5,5,5], |
---|
91 | [0,0,9], [-6, 3, 3]]) |
---|
92 | |
---|
93 | domain.check_integrity() |
---|
94 | |
---|
95 | #Centroids |
---|
96 | q = domain.get_conserved_quantities(0) |
---|
97 | assert allclose(q, [2., 2., 0.]) |
---|
98 | |
---|
99 | q = domain.get_conserved_quantities(1) |
---|
100 | assert allclose(q, [5., 5., 0.]) |
---|
101 | |
---|
102 | q = domain.get_conserved_quantities(2) |
---|
103 | assert allclose(q, [3., 3., 0.]) |
---|
104 | |
---|
105 | q = domain.get_conserved_quantities(3) |
---|
106 | assert allclose(q, [0., 0., 0.]) |
---|
107 | |
---|
108 | |
---|
109 | #Edges |
---|
110 | q = domain.get_conserved_quantities(0, edge=0) |
---|
111 | assert allclose(q, [2.5, 2.5, 0.]) |
---|
112 | q = domain.get_conserved_quantities(0, edge=1) |
---|
113 | assert allclose(q, [2., 2., 0.]) |
---|
114 | q = domain.get_conserved_quantities(0, edge=2) |
---|
115 | assert allclose(q, [1.5, 1.5, 0.]) |
---|
116 | |
---|
117 | for i in range(3): |
---|
118 | q = domain.get_conserved_quantities(1, edge=i) |
---|
119 | assert allclose(q, [5, 5, 0.]) |
---|
120 | |
---|
121 | |
---|
122 | q = domain.get_conserved_quantities(2, edge=0) |
---|
123 | assert allclose(q, [4.5, 4.5, 0.]) |
---|
124 | q = domain.get_conserved_quantities(2, edge=1) |
---|
125 | assert allclose(q, [4.5, 4.5, 0.]) |
---|
126 | q = domain.get_conserved_quantities(2, edge=2) |
---|
127 | assert allclose(q, [0., 0., 0.]) |
---|
128 | |
---|
129 | |
---|
130 | q = domain.get_conserved_quantities(3, edge=0) |
---|
131 | assert allclose(q, [3., 3., 0.]) |
---|
132 | q = domain.get_conserved_quantities(3, edge=1) |
---|
133 | assert allclose(q, [-1.5, -1.5, 0.]) |
---|
134 | q = domain.get_conserved_quantities(3, edge=2) |
---|
135 | assert allclose(q, [-1.5, -1.5, 0.]) |
---|
136 | |
---|
137 | |
---|
138 | |
---|
139 | def test_create_quantity_from_expression(self): |
---|
140 | """Quantity created from other quantities using arbitrary expression |
---|
141 | |
---|
142 | """ |
---|
143 | |
---|
144 | |
---|
145 | a = [0.0, 0.0] |
---|
146 | b = [0.0, 2.0] |
---|
147 | c = [2.0,0.0] |
---|
148 | d = [0.0, 4.0] |
---|
149 | e = [2.0, 2.0] |
---|
150 | f = [4.0,0.0] |
---|
151 | |
---|
152 | points = [a, b, c, d, e, f] |
---|
153 | #bac, bce, ecf, dbe, daf, dae |
---|
154 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4]] |
---|
155 | |
---|
156 | domain = Domain(points, vertices, boundary=None, |
---|
157 | conserved_quantities =\ |
---|
158 | ['stage', 'xmomentum', 'ymomentum'], |
---|
159 | other_quantities = ['elevation', 'friction']) |
---|
160 | |
---|
161 | |
---|
162 | domain.set_quantity('elevation', -1) |
---|
163 | |
---|
164 | |
---|
165 | domain.set_quantity('stage', [[1,2,3], [5,5,5], |
---|
166 | [0,0,9], [-6, 3, 3]]) |
---|
167 | |
---|
168 | domain.set_quantity('xmomentum', [[1,2,3], [5,5,5], |
---|
169 | [0,0,9], [-6, 3, 3]]) |
---|
170 | |
---|
171 | domain.set_quantity('ymomentum', [[3,3,3], [4,2,1], |
---|
172 | [2,4,-1], [1, 0, 1]]) |
---|
173 | |
---|
174 | domain.check_integrity() |
---|
175 | |
---|
176 | |
---|
177 | |
---|
178 | expression = 'stage - elevation' |
---|
179 | Q = domain.create_quantity_from_expression(expression) |
---|
180 | |
---|
181 | assert allclose(Q.vertex_values, [[2,3,4], [6,6,6], |
---|
182 | [1,1,10], [-5, 4, 4]]) |
---|
183 | |
---|
184 | expression = '(xmomentum*xmomentum + ymomentum*ymomentum)**0.5' |
---|
185 | Q = domain.create_quantity_from_expression(expression) |
---|
186 | |
---|
187 | X = domain.quantities['xmomentum'].vertex_values |
---|
188 | Y = domain.quantities['ymomentum'].vertex_values |
---|
189 | |
---|
190 | assert allclose(Q.vertex_values, (X**2 + Y**2)**0.5) |
---|
191 | |
---|
192 | |
---|
193 | |
---|
194 | |
---|
195 | |
---|
196 | def test_set_quantity_from_expression(self): |
---|
197 | """Quantity set using arbitrary expression |
---|
198 | |
---|
199 | """ |
---|
200 | |
---|
201 | |
---|
202 | a = [0.0, 0.0] |
---|
203 | b = [0.0, 2.0] |
---|
204 | c = [2.0,0.0] |
---|
205 | d = [0.0, 4.0] |
---|
206 | e = [2.0, 2.0] |
---|
207 | f = [4.0,0.0] |
---|
208 | |
---|
209 | points = [a, b, c, d, e, f] |
---|
210 | #bac, bce, ecf, dbe, daf, dae |
---|
211 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4]] |
---|
212 | |
---|
213 | domain = Domain(points, vertices, boundary=None, |
---|
214 | conserved_quantities =\ |
---|
215 | ['stage', 'xmomentum', 'ymomentum'], |
---|
216 | other_quantities = ['elevation', 'friction', 'depth']) |
---|
217 | |
---|
218 | |
---|
219 | domain.set_quantity('elevation', -1) |
---|
220 | |
---|
221 | |
---|
222 | domain.set_quantity('stage', [[1,2,3], [5,5,5], |
---|
223 | [0,0,9], [-6, 3, 3]]) |
---|
224 | |
---|
225 | domain.set_quantity('xmomentum', [[1,2,3], [5,5,5], |
---|
226 | [0,0,9], [-6, 3, 3]]) |
---|
227 | |
---|
228 | domain.set_quantity('ymomentum', [[3,3,3], [4,2,1], |
---|
229 | [2,4,-1], [1, 0, 1]]) |
---|
230 | |
---|
231 | |
---|
232 | |
---|
233 | |
---|
234 | domain.set_quantity('depth', expression = 'stage - elevation') |
---|
235 | |
---|
236 | domain.check_integrity() |
---|
237 | |
---|
238 | |
---|
239 | |
---|
240 | |
---|
241 | Q = domain.quantities['depth'] |
---|
242 | |
---|
243 | assert allclose(Q.vertex_values, [[2,3,4], [6,6,6], |
---|
244 | [1,1,10], [-5, 4, 4]]) |
---|
245 | |
---|
246 | |
---|
247 | |
---|
248 | |
---|
249 | |
---|
250 | |
---|
251 | |
---|
252 | |
---|
253 | |
---|
254 | def test_boundary_indices(self): |
---|
255 | |
---|
256 | from config import default_boundary_tag |
---|
257 | |
---|
258 | |
---|
259 | a = [0.0, 0.5] |
---|
260 | b = [0.0, 0.0] |
---|
261 | c = [0.5, 0.5] |
---|
262 | |
---|
263 | points = [a, b, c] |
---|
264 | vertices = [ [0,1,2] ] |
---|
265 | domain = Domain(points, vertices) |
---|
266 | |
---|
267 | domain.set_boundary( {default_boundary_tag: Dirichlet_boundary([5,2,1])} ) |
---|
268 | |
---|
269 | |
---|
270 | domain.check_integrity() |
---|
271 | |
---|
272 | assert allclose(domain.neighbours, [[-1,-2,-3]]) |
---|
273 | |
---|
274 | |
---|
275 | |
---|
276 | def test_boundary_conditions(self): |
---|
277 | |
---|
278 | a = [0.0, 0.0] |
---|
279 | b = [0.0, 2.0] |
---|
280 | c = [2.0,0.0] |
---|
281 | d = [0.0, 4.0] |
---|
282 | e = [2.0, 2.0] |
---|
283 | f = [4.0,0.0] |
---|
284 | |
---|
285 | points = [a, b, c, d, e, f] |
---|
286 | #bac, bce, ecf, dbe |
---|
287 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4] ] |
---|
288 | boundary = { (0, 0): 'First', |
---|
289 | (0, 2): 'First', |
---|
290 | (2, 0): 'Second', |
---|
291 | (2, 1): 'Second', |
---|
292 | (3, 1): 'Second', |
---|
293 | (3, 2): 'Second'} |
---|
294 | |
---|
295 | |
---|
296 | domain = Domain(points, vertices, boundary, |
---|
297 | conserved_quantities =\ |
---|
298 | ['stage', 'xmomentum', 'ymomentum']) |
---|
299 | domain.check_integrity() |
---|
300 | |
---|
301 | |
---|
302 | |
---|
303 | domain.set_quantity('stage', [[1,2,3], [5,5,5], |
---|
304 | [0,0,9], [-6, 3, 3]]) |
---|
305 | |
---|
306 | |
---|
307 | domain.set_boundary( {'First': Dirichlet_boundary([5,2,1]), |
---|
308 | 'Second': Transmissive_boundary(domain)} ) |
---|
309 | |
---|
310 | domain.update_boundary() |
---|
311 | |
---|
312 | assert domain.quantities['stage'].boundary_values[0] == 5. #Dirichlet |
---|
313 | assert domain.quantities['stage'].boundary_values[1] == 5. #Dirichlet |
---|
314 | assert domain.quantities['stage'].boundary_values[2] ==\ |
---|
315 | domain.get_conserved_quantities(2, edge=0)[0] #Transmissive (4.5) |
---|
316 | assert domain.quantities['stage'].boundary_values[3] ==\ |
---|
317 | domain.get_conserved_quantities(2, edge=1)[0] #Transmissive (4.5) |
---|
318 | assert domain.quantities['stage'].boundary_values[4] ==\ |
---|
319 | domain.get_conserved_quantities(3, edge=1)[0] #Transmissive (-1.5) |
---|
320 | assert domain.quantities['stage'].boundary_values[5] ==\ |
---|
321 | domain.get_conserved_quantities(3, edge=2)[0] #Transmissive (-1.5) |
---|
322 | |
---|
323 | #Check enumeration |
---|
324 | for k, ((vol_id, edge_id), _) in enumerate(domain.boundary_objects): |
---|
325 | assert domain.neighbours[vol_id, edge_id] == -k-1 |
---|
326 | |
---|
327 | |
---|
328 | |
---|
329 | |
---|
330 | def test_distribute_first_order(self): |
---|
331 | """Domain implements a default first order gradient limiter |
---|
332 | """ |
---|
333 | |
---|
334 | a = [0.0, 0.0] |
---|
335 | b = [0.0, 2.0] |
---|
336 | c = [2.0,0.0] |
---|
337 | d = [0.0, 4.0] |
---|
338 | e = [2.0, 2.0] |
---|
339 | f = [4.0,0.0] |
---|
340 | |
---|
341 | points = [a, b, c, d, e, f] |
---|
342 | #bac, bce, ecf, dbe |
---|
343 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4] ] |
---|
344 | boundary = { (0, 0): 'Third', |
---|
345 | (0, 2): 'First', |
---|
346 | (2, 0): 'Second', |
---|
347 | (2, 1): 'Second', |
---|
348 | (3, 1): 'Second', |
---|
349 | (3, 2): 'Third'} |
---|
350 | |
---|
351 | |
---|
352 | domain = Domain(points, vertices, boundary, |
---|
353 | conserved_quantities =\ |
---|
354 | ['stage', 'xmomentum', 'ymomentum']) |
---|
355 | domain.check_integrity() |
---|
356 | |
---|
357 | |
---|
358 | domain.set_quantity('stage', [[1,2,3], [5,5,5], |
---|
359 | [0,0,9], [-6, 3, 3]]) |
---|
360 | |
---|
361 | assert allclose( domain.quantities['stage'].centroid_values, |
---|
362 | [2,5,3,0] ) |
---|
363 | |
---|
364 | domain.set_quantity('xmomentum', [[1,1,1], [2,2,2], |
---|
365 | [3,3,3], [4, 4, 4]]) |
---|
366 | |
---|
367 | domain.set_quantity('ymomentum', [[10,10,10], [20,20,20], |
---|
368 | [30,30,30], [40, 40, 40]]) |
---|
369 | |
---|
370 | |
---|
371 | domain.distribute_to_vertices_and_edges() |
---|
372 | |
---|
373 | #First order extrapolation |
---|
374 | assert allclose( domain.quantities['stage'].vertex_values, |
---|
375 | [[ 2., 2., 2.], |
---|
376 | [ 5., 5., 5.], |
---|
377 | [ 3., 3., 3.], |
---|
378 | [ 0., 0., 0.]]) |
---|
379 | |
---|
380 | |
---|
381 | |
---|
382 | |
---|
383 | def test_update_conserved_quantities(self): |
---|
384 | a = [0.0, 0.0] |
---|
385 | b = [0.0, 2.0] |
---|
386 | c = [2.0,0.0] |
---|
387 | d = [0.0, 4.0] |
---|
388 | e = [2.0, 2.0] |
---|
389 | f = [4.0,0.0] |
---|
390 | |
---|
391 | points = [a, b, c, d, e, f] |
---|
392 | #bac, bce, ecf, dbe |
---|
393 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4] ] |
---|
394 | boundary = { (0, 0): 'Third', |
---|
395 | (0, 2): 'First', |
---|
396 | (2, 0): 'Second', |
---|
397 | (2, 1): 'Second', |
---|
398 | (3, 1): 'Second', |
---|
399 | (3, 2): 'Third'} |
---|
400 | |
---|
401 | |
---|
402 | domain = Domain(points, vertices, boundary, |
---|
403 | conserved_quantities =\ |
---|
404 | ['stage', 'xmomentum', 'ymomentum']) |
---|
405 | domain.check_integrity() |
---|
406 | |
---|
407 | |
---|
408 | domain.set_quantity('stage', [1,2,3,4], location='centroids') |
---|
409 | domain.set_quantity('xmomentum', [1,2,3,4], location='centroids') |
---|
410 | domain.set_quantity('ymomentum', [1,2,3,4], location='centroids') |
---|
411 | |
---|
412 | |
---|
413 | #Assign some values to update vectors |
---|
414 | #Set explicit_update |
---|
415 | |
---|
416 | for name in domain.conserved_quantities: |
---|
417 | domain.quantities[name].explicit_update = array([4.,3.,2.,1.]) |
---|
418 | domain.quantities[name].semi_implicit_update = array([1.,1.,1.,1.]) |
---|
419 | |
---|
420 | |
---|
421 | #Update with given timestep (assuming no other forcing terms) |
---|
422 | domain.timestep = 0.1 |
---|
423 | domain.update_conserved_quantities() |
---|
424 | |
---|
425 | sem = array([1.,1.,1.,1.])/array([1, 2, 3, 4]) |
---|
426 | denom = ones(4, Float)-domain.timestep*sem |
---|
427 | |
---|
428 | x = array([1, 2, 3, 4]) + array( [.4,.3,.2,.1] ) |
---|
429 | x /= denom |
---|
430 | |
---|
431 | for name in domain.conserved_quantities: |
---|
432 | assert allclose(domain.quantities[name].centroid_values, x) |
---|
433 | |
---|
434 | |
---|
435 | def test_set_region(self): |
---|
436 | """Set quantities for sub region |
---|
437 | """ |
---|
438 | |
---|
439 | a = [0.0, 0.0] |
---|
440 | b = [0.0, 2.0] |
---|
441 | c = [2.0,0.0] |
---|
442 | d = [0.0, 4.0] |
---|
443 | e = [2.0, 2.0] |
---|
444 | f = [4.0,0.0] |
---|
445 | |
---|
446 | points = [a, b, c, d, e, f] |
---|
447 | #bac, bce, ecf, dbe |
---|
448 | vertices = [ [1,0,2], [1,2,4], [4,2,5], [3,1,4] ] |
---|
449 | boundary = { (0, 0): 'Third', |
---|
450 | (0, 2): 'First', |
---|
451 | (2, 0): 'Second', |
---|
452 | (2, 1): 'Second', |
---|
453 | (3, 1): 'Second', |
---|
454 | (3, 2): 'Third'} |
---|
455 | |
---|
456 | domain = Domain(points, vertices, boundary, |
---|
457 | conserved_quantities =\ |
---|
458 | ['stage', 'xmomentum', 'ymomentum']) |
---|
459 | domain.check_integrity() |
---|
460 | |
---|
461 | domain.set_quantity('stage', [[1,2,3], [5,5,5], |
---|
462 | [0,0,9], [-6, 3, 3]]) |
---|
463 | |
---|
464 | assert allclose( domain.quantities['stage'].centroid_values, |
---|
465 | [2,5,3,0] ) |
---|
466 | |
---|
467 | domain.set_quantity('xmomentum', [[1,1,1], [2,2,2], |
---|
468 | [3,3,3], [4, 4, 4]]) |
---|
469 | |
---|
470 | domain.set_quantity('ymomentum', [[10,10,10], [20,20,20], |
---|
471 | [30,30,30], [40, 40, 40]]) |
---|
472 | |
---|
473 | |
---|
474 | domain.distribute_to_vertices_and_edges() |
---|
475 | |
---|
476 | #First order extrapolation |
---|
477 | assert allclose( domain.quantities['stage'].vertex_values, |
---|
478 | [[ 2., 2., 2.], |
---|
479 | [ 5., 5., 5.], |
---|
480 | [ 3., 3., 3.], |
---|
481 | [ 0., 0., 0.]]) |
---|
482 | |
---|
483 | domain.build_tagged_elements_dictionary({'mound':[0,1]}) |
---|
484 | domain.set_region([add_to_verts]) |
---|
485 | |
---|
486 | self.failUnless(domain.test == "Mound", |
---|
487 | 'set region failed') |
---|
488 | |
---|
489 | |
---|
490 | |
---|
491 | def test_region_tags(self): |
---|
492 | """ |
---|
493 | get values based on triangle lists. |
---|
494 | """ |
---|
495 | from mesh_factory import rectangular |
---|
496 | from shallow_water import Domain |
---|
497 | from Numeric import zeros, Float |
---|
498 | |
---|
499 | #Create basic mesh |
---|
500 | points, vertices, boundary = rectangular(1, 3) |
---|
501 | |
---|
502 | #Create shallow water domain |
---|
503 | domain = Domain(points, vertices, boundary) |
---|
504 | domain.build_tagged_elements_dictionary({'bottom':[0,1], |
---|
505 | 'top':[4,5], |
---|
506 | 'all':[0,1,2,3,4,5]}) |
---|
507 | |
---|
508 | |
---|
509 | #Set friction |
---|
510 | manning = 0.07 |
---|
511 | domain.set_quantity('friction', manning) |
---|
512 | |
---|
513 | domain.set_region([set_bottom_friction, set_top_friction]) |
---|
514 | #print domain.quantities['friction'].get_values() |
---|
515 | assert allclose(domain.quantities['friction'].get_values(),\ |
---|
516 | [[ 0.09, 0.09, 0.09], |
---|
517 | [ 0.09, 0.09, 0.09], |
---|
518 | [ 0.07, 0.07, 0.07], |
---|
519 | [ 0.07, 0.07, 0.07], |
---|
520 | [ 1.0, 1.0, 1.0], |
---|
521 | [ 1.0, 1.0, 1.0]]) |
---|
522 | |
---|
523 | domain.set_region([set_all_friction]) |
---|
524 | #print domain.quantities['friction'].get_values() |
---|
525 | assert allclose(domain.quantities['friction'].get_values(), |
---|
526 | [[ 10.09, 10.09, 10.09], |
---|
527 | [ 10.09, 10.09, 10.09], |
---|
528 | [ 10.07, 10.07, 10.07], |
---|
529 | [ 10.07, 10.07, 10.07], |
---|
530 | [ 11.0, 11.0, 11.0], |
---|
531 | [ 11.0, 11.0, 11.0]]) |
---|
532 | |
---|
533 | |
---|
534 | #------------------------------------------------------------- |
---|
535 | if __name__ == "__main__": |
---|
536 | suite = unittest.makeSuite(Test_Domain,'test') |
---|
537 | runner = unittest.TextTestRunner() |
---|
538 | runner.run(suite) |
---|