Files
simpeg/simpegDCIP/Tests/test_forward_DCproblem_analytic.py
T
seogi_macbook e0d9c27d87 Result of SimPEG hackathon
- Incorporate field class on DC
- Add IP forward modelling and inversion
- Modify notebooks
- change folder name form simpegDC to simpegDCIP
2015-06-03 08:29:05 -07:00

13 lines
230 B
Python

import unittest
import simpegDC as DC
class DCAnalyticTests(unittest.TestCase):
def test_forwardAnalytic(self):
self.assertTrue(DC.Examples.Verification.run() < 0.1)
if __name__ == '__main__':
unittest.main()