]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
Call unittest.main()
authorCédric Aguerre <cedric.aguerre@edf.fr>
Mon, 18 Apr 2016 16:28:04 +0000 (18:28 +0200)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Mon, 18 Apr 2016 16:28:04 +0000 (18:28 +0200)
src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py
src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py

index 9ed369348f3210d683baa58b2fab9f59d1b902a4..2b02c9e818dd63c5cd1eb96df7e42e8bc5e15040 100644 (file)
@@ -42,12 +42,12 @@ class LifeCycleCORBA_SWIGTest(unittest.TestCase):
 
     def tearDown(self):
         pass
-    
+
     def test001_FindOrLoad_Component_LaunchContainer(self):
         """
         get a local container (no hostname given),
         load an engine, check that the CORBA object is not null.
-        check narrow        
+        check narrow
         """
         containerName = "swMyContainer"
         comp=self.lcc.FindOrLoad_Component(containerName,"SalomeTestComponent")
@@ -60,7 +60,7 @@ class LifeCycleCORBA_SWIGTest(unittest.TestCase):
         """
         Check FindOrLoad_Component.
         Call 2 times FindOrLoad_Component with the same parameters,
-        check if we get the same engine      
+        check if we get the same engine
         """
         containerName = "swMyContainer"
         cp1=self.lcc.FindOrLoad_Component(containerName,"SalomeTestComponent")
@@ -87,7 +87,7 @@ class LifeCycleCORBA_SWIGTest(unittest.TestCase):
         self.assertNotEqual(cp1,None)
         m1=cp1._narrow(Engines.TestComponent)
         self.assertNotEqual(m1,None)
-        pass        
+        pass
 
     def test004_FindOrLoad_Component_PythonSameInstance(self):
         """
@@ -113,7 +113,7 @@ class LifeCycleCORBA_SWIGTest(unittest.TestCase):
         """
         Check FindOrLoad_Component with a component name not in catalog.
         See list of catalog given to module catalog server.
-        Here, we work with KERNEL_SRC/resources/KERNELCatalog.xml that contains 
+        Here, we work with KERNEL_SRC/resources/KERNELCatalog.xml that contains
         only KERNEL, SalomeTestComponent and SALOME_TestComponentPy
         """
         containerName = "swMyContainer"
@@ -167,9 +167,9 @@ class LifeCycleCORBA_SWIGTest(unittest.TestCase):
         self.assertEqual(hostname1,hostname2)
         pidc1=c1.getPID()
         pidc2=c2.getPID()
-        self.assertEqual(pidc1,pidc2)        
+        self.assertEqual(pidc1,pidc2)
         pass
-    
+
     def test008_FindOrLoad_Component_UnknownMachine(self):
         """
         Check FindOrLoad_Component: check behaviour when ask for an unknown
@@ -182,8 +182,8 @@ class LifeCycleCORBA_SWIGTest(unittest.TestCase):
         except RuntimeError,ex :
             self.assertEqual(ex.args[0],'unknown host')
         pass
-       
-    
+
+
 def suite():
     return unittest.makeSuite(LifeCycleCORBA_SWIGTest,'test')
 
@@ -191,6 +191,5 @@ def main():
     return unittest.TextTestRunner().run(suite())
 
 if __name__ == '__main__':
-    unittest.TextTestRunner(verbosity=2).run(suite())
-    pass
-
+    #unittest.TextTestRunner(verbosity=2).run(suite())
+    unittest.main()
index fa838da0a8c407c49513f86d30c8c1a602233c2f..da93f12316008ee35a5bf49f9e8e0151b2dc696b 100644 (file)
@@ -141,6 +141,6 @@ Test with CatalogResources.xml:
     self.assertEqual(rm.Find('best',machineList), "m2")
 
 if __name__ == '__main__':
-  suite = unittest.TestLoader().loadTestsFromTestCase(TestResourceManager)
-  unittest.TextTestRunner().run(suite)
-
+  #suite = unittest.TestLoader().loadTestsFromTestCase(TestResourceManager)
+  #unittest.TextTestRunner().run(suite)
+  unittest.main()