geom/doc/salome/examples/testme.py

28 lines
642 B
Python
Raw Normal View History

2013-02-12 17:35:16 +06:00
#!/usr/bin/env python
2013-02-28 20:00:05 +06:00
import unittest, sys, os
2013-02-12 17:35:16 +06:00
class SalomeSession(object):
def __init__(self, script):
import runSalome
sys.argv = ["runSalome.py"]
sys.argv += ["--terminal"]
sys.argv += ["--modules=GEOM"]
sys.argv += ["--execute=%s" % script]
clt, d = runSalome.main()
return
def __del__(self):
2013-02-28 20:00:05 +06:00
port = os.getenv('NSPORT')
2013-02-12 17:35:16 +06:00
import killSalomeWithPort
killSalomeWithPort.killMyPort(port)
return
pass
class MyTest(unittest.TestCase):
def testFunction(self):
SalomeSession(sys.argv[1])
pass
unittest.main(argv=sys.argv[:1])