mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-28 12:11:08 +08:00
17 lines
239 B
Python
17 lines
239 B
Python
import unittest
|
|
from SimPEG import *
|
|
import simpegPF
|
|
|
|
|
|
class PFProblemTests(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_awesome(self):
|
|
self.assertTrue(True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|