# coding: utf8 # # Project: PROJECT # http://www.edna-site.org # # File: "$Id: EDTestSuitePlugin.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__ = "" from EDTestSuite import EDTestSuite class EDTestSuitePlugin(EDTestSuite): """ This is the test suite for EDNA plugin It will run subsequently all unit tests and execution tests. """ def process(self): self.addTestCaseFromName("EDTestCasePluginUnit") self.addTestCaseFromName("EDTestCasePluginExecute") if __name__ == '__main__': edTestSuitePlugin = EDTestSuitePlugin("EDTestSuitePlugin") edTestSuitePlugin.execute()