Files
simpeg/tests/em/examples/test_Examples.py
T
2015-11-05 13:17:04 -08:00

11 lines
227 B
Python

import unittest, os
from SimPEG.EM import Examples
class EM_ExamplesRunning(unittest.TestCase):
def test_CylInversion(self):
Examples.CylInversion.run(plotIt=False)
if __name__ == '__main__':
unittest.main()