Ignore:
Timestamp:
Jan 31, 2015, 7:12:40 PM (10 years ago)
Author:
steve
Message:

Moving test folders to tests foldersy

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  
    11#nothing
     2
     3from numpy.testing import Tester
     4test = Tester().test
  • trunk/anuga_core/source/anuga/alpha_shape/tests/test_alpha_shape.py

    r9487 r9562  
    4646            pass
    4747        else:
    48             self.failUnless(0==1, \
     48            self.assertTrue(0==1, \
    4949                        'point list with 2 points did not raise an error!')
    5050
     
    163163            pass
    164164        else:
    165             self.failUnless(0==1,
     165            self.assertTrue(0==1,
    166166                        'point list with 2 points did not raise an error!')
    167167
     
    197197        file.close()
    198198        os.remove(output_file_name)
    199         self.failUnless(lFile[1] == "5,0" and
     199        self.assertTrue(lFile[1] == "5,0" and
    200200                        lFile[2] == "0,1" and
    201201                        lFile[3] == "4,5" and
Note: See TracChangeset for help on using the changeset viewer.