Salome HOME
[TetraIntersect] Formatting and including what's inline really inline!
[tools/medcoupling.git] / src / MEDPartitioner_Swig / MEDPartitionerTest.py
index 93657cabf1d3cdd763a2bf8f00e6226669c07e7e..1086d6ee9a1562aeae3dfc15d84d8c6b0fec5485 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012-2016  CEA/DEN, EDF R&D
+# Copyright (C) 2012-2024  CEA, EDF
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 from MEDPartitioner import *
 from MEDLoader import *
 import unittest
-from MEDLoaderDataForTest import MEDLoaderDataForTest
+from MEDLoaderDataForTest import MEDLoaderDataForTest,WriteInTmpDir
 
 class MEDPartitionerTest(unittest.TestCase):
+    @WriteInTmpDir
     def testPartition(self):
         fname="PyPartitionTest.med"
         data=MEDLoaderDataForTest.buildACompleteMEDDataStructureWithFieldsOnCells_1()
@@ -38,7 +39,8 @@ class MEDPartitionerTest(unittest.TestCase):
         m1d=data1.getMeshes().getMeshAtPos(0)
         m2d=data2.getMeshes().getMeshAtPos(0)
         self.assertTrue(m1d.isEqual(m2d,1e-12))
-    pass
+        pass
+    @WriteInTmpDir
     def testPartitionGraph(self):
         data=MEDLoaderDataForTest.buildACompleteMEDDataStructureWithFieldsOnCells_1()
         m=data.getMeshes().getMeshAtPos(0)
@@ -47,7 +49,8 @@ class MEDPartitionerTest(unittest.TestCase):
         tool=MEDPartitioner(data,graph)
         data2=tool.getMEDFileData()
         self.assertEqual( 2, data2.getMeshes().getNumberOfMeshes() )
-    pass
+        pass
+    @WriteInTmpDir
     def testPartitionWithJoints(self):
         # cartesian mesh 4x4
         arr=DataArrayDouble(5) ; arr.iota()
@@ -90,6 +93,7 @@ class MEDPartitionerTest(unittest.TestCase):
         pass
         self.assertEqual(1,found)
     pass
+    @WriteInTmpDir
     def testPartitionPartGraph(self):
         arr=DataArrayDouble(5) ; arr.iota()
         c=MEDCouplingCMesh() ; c.setCoords(arr,arr)