mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-28 21:30:17 +08:00
13 lines
232 B
Python
13 lines
232 B
Python
import unittest
|
|
import simpegDCIP as DC
|
|
|
|
|
|
class DCAnalyticTests(unittest.TestCase):
|
|
|
|
def test_forwardAnalytic(self):
|
|
self.assertTrue(DC.Examples.Verification.run() < 0.1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|