TestCenter Reference
TestCenter.py
Go to the documentation of this file.
2# Copyright 2007, MeVis Medical Solutions AG
3#
4# The user may use this file in accordance with the license agreement provided with
5# the Software or, alternatively, in accordance with the terms contained in a
6# written agreement between the user and MeVis Medical Solutions AG.
7#
8# For further information use the contact form at https://www.mevislab.de/contact
9#
10
11
12
13
293
294# -- system imports ----------------------------------------------------------------------------{{{-
295import os
296import sys
297
298# ----------------------------------------------------------------------------------------------}}}-
299
300# If script is called from command line execute the following block.
301if __name__ == '__main__': # -------------------------------------------------------------------{{{-
302 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
303 import TestCenterAdvanced.TestCenterModule
304 sys.exit(TestCenterAdvanced.TestCenterModule.runConsole(sys.argv[1:]))
305# ----------------------------------------------------------------------------------------------}}}-