Salome HOME
refs #673: test for export to Telemac
[modules/hydro.git] / src / HYDRO_tests / TestViewer.h
index c7be51fb9439f8fbf7d05c6342194005763bd1b6..6817a7f64691102c78ccc2c9ecb2b00b80e00ac1 100644 (file)
@@ -45,7 +45,10 @@ public:
 
   static void select( int theViewX, int theViewY );
 
-  static bool areScriptsEqual( const QString& theBaseName );
+  static bool areScriptsEqual( const QString& theBaseName,
+                               bool isExpectedUtf8,
+                               bool isActualUtf8,
+                               int theLinesToOmit );
 
 private:
   static OCCViewer_ViewManager* myViewManager;
@@ -63,8 +66,14 @@ private:
     }                                                      \
   }                                                        \
 
-#define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName )        \
-  if( !TestViewer::areScriptsEqual( theBaseName ) )        \
+#define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName,         \
+                                      isExpectedUtf8,      \
+                                      isActualUtf8,        \
+                                      theLinesToOmit )     \
+  if( !TestViewer::areScriptsEqual( theBaseName,           \
+                                    isExpectedUtf8,        \
+                                    isActualUtf8,          \
+                                    theLinesToOmit ) )     \
     CPPUNIT_FAIL( "Scripts are not equal" );               \