mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-27 20:53:38 +08:00
14 lines
250 B
Python
14 lines
250 B
Python
import unittest
|
|
import sys
|
|
from SimPEG.Examples import Linear
|
|
import numpy as np
|
|
|
|
class TestLinear(unittest.TestCase):
|
|
|
|
def test_running(self):
|
|
Linear.run(100)
|
|
self.assertTrue(True)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|