mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-28 00:45:10 +08:00
13 lines
272 B
Python
13 lines
272 B
Python
import unittest
|
|
import sys
|
|
from SimPEG.FLOW.Examples import Celia1990
|
|
import numpy as np
|
|
|
|
class TestCelia1990(unittest.TestCase):
|
|
def test_running(self):
|
|
Celia1990.run(plotIt=False)
|
|
self.assertTrue(True)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|