X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelHighAPI%2FTest%2FTestDouble.py;h=438444b028c84f4d7c38625141c22660eb2fa222;hb=fec33ea37fbbd369bda3da328abf6171d08a6c42;hp=d34c8d420be008d9f9b7653a0ddf8f265f4449d4;hpb=3379b7a05b90017df91728b6d5290be1bad9cf98;p=modules%2Fshaper.git diff --git a/src/ModelHighAPI/Test/TestDouble.py b/src/ModelHighAPI/Test/TestDouble.py index d34c8d420..438444b02 100644 --- a/src/ModelHighAPI/Test/TestDouble.py +++ b/src/ModelHighAPI/Test/TestDouble.py @@ -1,3 +1,23 @@ +## Copyright (C) 2014-2017 CEA/DEN, EDF R&D +## +## 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 +## + import unittest import ModelHighAPI @@ -9,12 +29,10 @@ class DoubleTestCase(unittest.TestCase): def test_create_from_double(self): from_double = ModelHighAPI.ModelHighAPI_Double(100.) -# self.assertEqual(100., from_double.value()) def test_create_from_text(self): from_string = ModelHighAPI.ModelHighAPI_Double("200 + x") -# self.assertEqual("200 + x", from_string.text()) - + if __name__ == "__main__": - unittest.main() + unittest.main(exit=False)