From: Anthony Geay Date: Thu, 18 Jan 2018 13:54:35 +0000 (+0100) Subject: Add an unconditional test of pywrapping X-Git-Tag: V9_0_0~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=df9e282903c062e7298bb2da9e5285611acb4698;p=tools%2Fmedcoupling.git Add an unconditional test of pywrapping --- diff --git a/src/PyWrapping/TestPyWrapGathered_medcoupling.py b/src/PyWrapping/TestPyWrapGathered_medcoupling.py index f172a79b5..27107dddf 100644 --- a/src/PyWrapping/TestPyWrapGathered_medcoupling.py +++ b/src/PyWrapping/TestPyWrapGathered_medcoupling.py @@ -48,6 +48,15 @@ class FileCreator(object): pass class medcouplingTest(unittest.TestCase): + + def test0(self): + """ Unconditionnal test : medcoupling "kernel" classes """ + f=MEDCouplingFieldDouble(ON_CELLS) + g=DataArrayDouble(10,2) + h=MEDCouplingUMesh("mesh",3) + hh=MEDCouplingRemapper() + ee=InterpKernelException("ee") + pass @unittest.skipUnless(HasMEDFileExt(),"Requires link to MED file") def test1(self):