# coding: utf8 # # Project: PROJECT # http://www.edna-site.org # # File: "$Id: EDTestCasePluginExecuteControl.py.template,v 1.1.1.1 2011/09/12 15:03:44 rmk65 Exp $" # # Copyright (C) # # Principal author: # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # __author__="" __license__ = "GPLv3+" __copyright__ = "" import os from EDVerbose import EDVerbose from EDAssert import EDAssert from EDTestCasePluginExecute import EDTestCasePluginExecute class EDTestCasePluginExecuteControl(EDTestCasePluginExecute): def __init__(self, _strTestName = None): EDTestCasePluginExecute.__init__(self, "EDPluginControl") # self.setConfigurationFile(os.path.join(self.getPluginTestsDataHome(), # "XSConfiguration_.xml")) self.setDataInputFile(os.path.join(self.getPluginTestsDataHome(), \ "XSDataInput_reference.xml")) self.setReferenceDataOutputFile(os.path.join(self.getPluginTestsDataHome(), \ "XSDataResult_reference.xml")) def testExecute(self): """ """ self.run() def process(self): """ """ self.addTestMethod(self.testExecute) if __name__ == '__main__': edTestCasePluginExecuteControl = EDTestCasePluginExecuteControl("EDTestCasePluginExecuteControl") edTestCasePluginExecuteControl.execute()