--- /dev/null
+# -*- coding: iso-8859-1 -*-
+# Copyright (C) 2007-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
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+# Author : Anthony Geay (CEA/DEN)
+
+from MEDLoader import *
+import unittest
+from MEDLoaderDataForTest import MEDLoaderDataForTest,WriteInTmpDir
+
+
+class MEDWriterTest1(unittest.TestCase):
+ @WriteInTmpDir
+ def testMesh1D(self):
+ # setup
+ mesh=MEDLoaderDataForTest.build1DMesh_1();
+ mesh.checkConsistencyLight();
+
+ meshMEDFile = MEDFileUMesh()
+ meshMEDFile.setMeshAtLevel(0,mesh)
+ # create groups
+ grp0 = DataArrayInt([0,1])
+ grp0.setName("grp0")
+ grp1 = DataArrayInt([0,1,2])
+ grp1.setName("grp1")
+ grp2 = DataArrayInt([1,2,3])
+ grp2.setName("grp2")
+ meshMEDFile.setGroupsAtLevel(0,[grp0,grp1,grp2])
+
+ ms=MEDFileMeshes()
+ ms.pushMesh(meshMEDFile)
+
+ medFileData = MEDFileData()
+ medFileData.setMeshes(ms)
+
+ tmpMeshWriter = MeshFormatWriter()
+ tmpMeshWriter.setMeshFileName("Meshfile")
+ tmpMeshWriter.setMEDFileDS(medFileData)
+
+
+ # meshMEDFile.write("/tmp/Mesh2.med",2)
+ # # Read MEDFile and test equality
+ # meshMEDFileRead = MEDFileMesh.New("/tmp/Mesh2.med")
+ # # assert groups
+ # self.assertEqual(meshMEDFileRead.getGroupArr(0,"grp0").getValues(), [0,1]);
+
+
+if __name__ == '__main__':
+ unittest.main()
\ No newline at end of file