Salome HOME
refs #673: test for export to Telemac
[modules/hydro.git] / src / HYDRO_tests / TestViewer.h
index 897368d90ecbcb9f539a7962fd79a341dcbc242b..6817a7f64691102c78ccc2c9ecb2b00b80e00ac1 100644 (file)
@@ -35,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 );
@@ -45,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;
@@ -61,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" );               \
+
+