mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-29 03:21:31 +08:00
24 lines
419 B
Python
24 lines
419 B
Python
import unittest
|
|
from SimPEG import *
|
|
import simpegPF as PF
|
|
|
|
|
|
class MagProblemTests(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
M = Mesh.TensorMesh([10,10])
|
|
mod = Model.LogModel(M)
|
|
prob = PF.Mag.MagProblem(M, mod, None)
|
|
|
|
self.prob = prob
|
|
self.M = M
|
|
|
|
def test_forward(self):
|
|
|
|
passed = True
|
|
self.assertTrue(passed)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|