Module EDTestSuiteKernelExecute
[hide private]
[frames] | no frames]

Source Code for Module EDTestSuiteKernelExecute

 1  # coding: utf8 
 2  # 
 3  #    Project: The EDNA Kernel 
 4  #             http://www.edna-site.org 
 5  # 
 6  #    File: "$Id: EDTestSuiteKernel.py 1343 2010-03-31 11:46:30Z svensson $" 
 7  # 
 8  #    Copyright (C) 2008-2009 European Synchrotron Radiation Facility 
 9  #                            Grenoble, France 
10  # 
11  #    Principal authors:  Marie-Francoise Incardona (incardon@esrf.fr) 
12  #                        Olof Svensson (svensson@esrf.fr) 
13  #                        Jérôme Kieffer (Jerome.Kieffer@esrf.eu) 
14  # 
15  #    This program is free software: you can redistribute it and/or modify 
16  #    it under the terms of the GNU Lesser General Public License as published 
17  #    by the Free Software Foundation, either version 3 of the License, or 
18  #    (at your option) any later version. 
19  # 
20  #    This program is distributed in the hope that it will be useful, 
21  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
22  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
23  #    GNU Lesser General Public License for more details. 
24  # 
25  #    You should have received a copy of the GNU General Public License 
26  #    and the GNU Lesser General Public License  along with this program.   
27  #    If not, see <http://www.gnu.org/licenses/>. 
28  # 
29   
30  __authors__ = ["Marie-Francoise Incardona", "Jérôme Kieffer", "Olof Svensson"] 
31  __contact__ = "svensson@esrf.fr" 
32  __license__ = "LGPLv3+" 
33  __copyright__ = "European Synchrotron Radiation Facility, Grenoble, France" 
34   
35  from EDTestSuite import EDTestSuite 
36   
37   
38 -class EDTestSuiteKernelExecute(EDTestSuite):
39 40
41 - def process(self):
42 self.addTestCaseFromName("EDTestCasePluginExecuteTestPlugin") 43 self.addTestCaseFromName("EDTestCaseParallelExecute") 44 self.addTestCaseFromName("EDTestCaseEDJob")
45 46 47 if __name__ == '__main__': 48 edTestSuiteKernelExecute = EDTestSuiteKernelExecute("EDTestSuiteKernelExecute") 49 edTestSuiteKernelExecute.execute() 50