TestCenter Reference
TestCaseFunctional.py
Go to the documentation of this file.
1 #
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 
13 
14 # -- system imports ----------------------------------------------------------------------------{{{-
15 # ----------------------------------------------------------------------------------------------}}}-
16 
17 # -- local imports -----------------------------------------------------------------------------{{{-
18 from .TestCase import TestCase
19 # ----------------------------------------------------------------------------------------------}}}-
20 
21 # -- class FunctionalTestCase ------------------------------------------------------------------{{{-
22 
25  def __init__ (self, testCaseName, isNewlyCreated=False):
26  self._testCaseType_testCaseType_testCaseType = 'FunctionalTestCase'
27  TestCase.__init__(self, testCaseName, isNewlyCreated)
28 # ----------------------------------------------------------------------------------------------}}}-
29 
Implementation of the TestCase superclass for functional test cases.
def __init__(self, testCaseName, isNewlyCreated=False)
Default constructor for the test case.
The superclass for the different test case categories.
Definition: TestCase.py:88