mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-29 01:12:08 +08:00
14 lines
231 B
Python
14 lines
231 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()
|