Salome HOME
[eficas] Corrections for validation of eficas test
[modules/hydrosolver.git] / tests / boundaryConditionsDlgTest.py
1 import os
2 import sys
3
4 from PyQt5.QtGui import *
5 from PyQt5.QtWidgets import *
6
7 cur_dir = os.path.dirname(os.path.realpath(__file__))
8 data_dir = os.path.join(cur_dir, "data")
9
10 #import sysconfig
11 #pythonVersion = 'python' + sysconfig.get_python_version()
12 #hydro_solver_root = os.path.join(os.environ['HYDROSOLVER_ROOT_DIR'], 'lib', pythonVersion, 'site-packages', 'salome', 'salome', 'hydro')
13 from BndConditionsDialog import BoundaryConditionsDialog
14
15 # Show the dialog
16 app = QApplication(sys.argv)
17 window = BoundaryConditionsDialog()
18
19 window.show()
20 sys.exit(app.exec_())
21
22