Changeset 9562 for trunk/anuga_core/source/anuga/alpha_shape
- Timestamp:
- Jan 31, 2015, 7:12:40 PM (10 years ago)
- Location:
- trunk/anuga_core/source/anuga/alpha_shape
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/alpha_shape/__init__.py
r676 r9562 1 1 #nothing 2 3 from numpy.testing import Tester 4 test = Tester().test -
trunk/anuga_core/source/anuga/alpha_shape/tests/test_alpha_shape.py
r9487 r9562 46 46 pass 47 47 else: 48 self. failUnless(0==1, \48 self.assertTrue(0==1, \ 49 49 'point list with 2 points did not raise an error!') 50 50 … … 163 163 pass 164 164 else: 165 self. failUnless(0==1,165 self.assertTrue(0==1, 166 166 'point list with 2 points did not raise an error!') 167 167 … … 197 197 file.close() 198 198 os.remove(output_file_name) 199 self. failUnless(lFile[1] == "5,0" and199 self.assertTrue(lFile[1] == "5,0" and 200 200 lFile[2] == "0,1" and 201 201 lFile[3] == "4,5" and
Note: See TracChangeset
for help on using the changeset viewer.