Changeset 9445
- Timestamp:
- Jan 20, 2015, 9:27:06 PM (10 years ago)
- Location:
- trunk/anuga_core/source/anuga/operators
- Files:
-
- 23 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/operators/test/test_boundary_flux_integral_operator.py
r9442 r9445 2 2 import anuga 3 3 import numpy 4 import os 4 5 5 6 boundaryPolygon=[ [0., 0.], [0., 100.], [100.0, 100.0], [100.0, 0.0]] … … 12 13 13 14 def tearDown(self): 14 pass 15 try: 16 os.remove('test_boundaryfluxintegral.msh') 17 except: 18 pass 19 20 21 try: 22 os.remove('test_boundaryfluxintegral.sww') 23 except: 24 pass 15 25 16 26 def create_domain(self, flowalg): -
trunk/anuga_core/source/anuga/operators/test/test_kinematic_viscosity_operator.py
r9442 r9445 8 8 from math import sqrt 9 9 import unittest 10 import os 10 11 11 12 class Test_kinematic_viscosity(unittest.TestCase): … … 15 16 16 17 def tearDown(self): 17 pass 18 18 try: 19 os.remove('domain.sww') 20 except: 21 pass 22 23 try: 24 os.remove('anuga.log') 25 except: 26 pass 27 19 28 #First test operator class (1 triangle) 20 29 def operator1(self): -
trunk/anuga_core/source/anuga/operators/test/test_rate_operators.py
r9442 r9445 23 23 import warnings 24 24 import time 25 import os 25 26 26 27 … … 33 34 34 35 def tearDown(self): 35 pass 36 try: 37 os.remove('test_file_function.txt') 38 except: 39 pass 40 41 try: 42 os.remove('test_file_function.tms') 43 except: 44 pass 36 45 37 46
Note: See TracChangeset
for help on using the changeset viewer.