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

Source Code for Module EDTestSuiteKernelUnit

 1  # 
 2  #    Project: The EDNA Kernel 
 3  #             http://www.edna-site.org 
 4  # 
 5  #    File: "$Id$" 
 6  # 
 7  #    Copyright (C) 2008-2009 European Synchrotron Radiation Facility 
 8  #                            Grenoble, France 
 9  # 
10  #    Principal authors:  Marie-Francoise Incardona (incardon@esrf.fr) 
11  #                        Olof Svensson (svensson@esrf.fr) 
12  #                        Jerome Kieffer (kieffer@esrf.fr) 
13  # 
14  #    This program is free software: you can redistribute it and/or modify 
15  #    it under the terms of the GNU Lesser General Public License as published 
16  #    by the Free Software Foundation, either version 3 of the License, or 
17  #    (at your option) any later version. 
18  # 
19  #    This program is distributed in the hope that it will be useful, 
20  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
21  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
22  #    GNU Lesser General Public License for more details. 
23  # 
24  #    You should have received a copy of the GNU General Public License 
25  #    and the GNU Lesser General Public License  along with this program.   
26  #    If not, see <http://www.gnu.org/licenses/>. 
27  # 
28   
29  __authors__ = ["Marie-Francoise Incardona", "Jerome Kieffer", "Olof Svensson"] 
30  __contact__ = "svensson@esrf.fr" 
31  __license__ = "LGPLv3+" 
32  __copyright__ = "European Synchrotron Radiation Facility, Grenoble, France" 
33   
34  from EDTestSuite import EDTestSuite 
35   
36   
37 -class EDTestSuiteKernelUnit(EDTestSuite):
38 39
40 - def process(self):
41 self.addTestCaseFromName("EDTestCaseEDActionCluster") 42 self.addTestCaseFromName("EDTestCaseEDConfiguration") 43 self.addTestCaseFromName("EDTestCaseEDPlugin") 44 self.addTestCaseFromName("EDTestCaseEDPluginExecProcessScript") 45 self.addTestCaseFromName("EDTestCaseEDUtilsFile") 46 self.addTestCaseFromName("EDTestCaseEDUtilsPath") 47 self.addTestCaseFromName("EDTestCaseEDUtilsImage") 48 self.addTestCaseFromName("EDTestCaseEDUtilsTable") 49 self.addTestCaseFromName("EDTestCaseEDUtilsSymmetry") 50 self.addTestCaseFromName("EDTestCaseEDUtilsArray") 51 self.addTestCaseFromName("EDTestCaseEDUtilsUnit") 52 self.addTestCaseFromName("EDTestCaseEDUtilsPlatform") 53 self.addTestCaseFromName("EDTestCaseEDFactoryPlugin") 54 self.addTestCaseFromName("EDTestCaseEDFactoryPluginTest") 55 self.addTestCaseFromName("EDTestCaseEDStatus") 56 self.addTestCaseFromName("EDTestCaseEDShare")
57 58 59 if __name__ == '__main__': 60 edTestSuiteKernelUnit = EDTestSuiteKernelUnit("EDTestSuiteKernelUnit") 61 edTestSuiteKernelUnit.execute() 62