Salome HOME
refs #673: test for export to Telemac
[modules/hydro.git] / src / HYDRO_tests / TestViewer.h
index d5bd15d6aed14ff9f39c237f3f1792843dc4dcba..6817a7f64691102c78ccc2c9ecb2b00b80e00ac1 100644 (file)
@@ -1,3 +1,20 @@
+// Copyright (C) 2014-2015  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
+//
 
 #pragma once
 
@@ -18,7 +35,7 @@ public:
   static OCCViewer_ViewWindow* viewWindow();
 
   static void show( const Handle_AIS_InteractiveObject& theObject,
-                    int theMode, int theSelelctionMode, bool isFitAll, const char* theKey );
+                    int theMode, int theSelectionMode, bool isFitAll, const char* theKey );
   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor );
   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey );
   static bool AssertImages( QString& theMessage );
@@ -28,6 +45,11 @@ public:
 
   static void select( int theViewX, int theViewY );
 
+  static bool areScriptsEqual( const QString& theBaseName,
+                               bool isExpectedUtf8,
+                               bool isActualUtf8,
+                               int theLinesToOmit );
+
 private:
   static OCCViewer_ViewManager* myViewManager;
   static OCCViewer_ViewWindow* myViewWindow;
@@ -44,3 +66,14 @@ private:
     }                                                      \
   }                                                        \
 
+#define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName,         \
+                                      isExpectedUtf8,      \
+                                      isActualUtf8,        \
+                                      theLinesToOmit )     \
+  if( !TestViewer::areScriptsEqual( theBaseName,           \
+                                    isExpectedUtf8,        \
+                                    isActualUtf8,          \
+                                    theLinesToOmit ) )     \
+    CPPUNIT_FAIL( "Scripts are not equal" );               \
+
+