TestCenter Reference
TestCaseFunctional.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
13
14# -- system imports ----------------------------------------------------------------------------{{{-
15# ----------------------------------------------------------------------------------------------}}}-
16
17# -- local imports -----------------------------------------------------------------------------{{{-
18from .TestCase import TestCase
19
20# ----------------------------------------------------------------------------------------------}}}-
21
22
23# -- class FunctionalTestCase ------------------------------------------------------------------{{{-
24
27 def __init__(self, testCaseName, isNewlyCreated=False):
28 self._testCaseType_testCaseType = "FunctionalTestCase"
29 TestCase.__init__(self, testCaseName, isNewlyCreated)
30
31
32# ----------------------------------------------------------------------------------------------}}}-
Implementation of the TestCase superclass for functional test cases.
__init__(self, testCaseName, isNewlyCreated=False)
Default constructor for the test case.
The superclass for the different test case categories.
Definition TestCase.py:90
_testCaseType
The type of the test case.
Definition TestCase.py:100