mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-01 05:59:20 +08:00
16 lines
222 B
Python
16 lines
222 B
Python
import unittest
|
|
from SimPEG import *
|
|
|
|
|
|
class EMProblemTests(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_awesome(self):
|
|
self.assertTrue(True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|