]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/testfile.h
adding a app-defined event seems to quit inner eventloops like eg the popup of the...
[wxWidgets.git] / tests / testfile.h
index d982ee9334457ff44d530549b35e799892fe65a9..7e2775376574249fb4befc0bd56f4e9144c1b7a8 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Mike Wetherell
 // RCS-ID:      $Id$
 // Copyright:   (c) 2005 Mike Wetherell
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_TESTS_TEMPFILE_H_
 #include "wx/filefn.h"
 #include "wx/filename.h"
 
+#include <ostream>
+
+// define stream inserter for wxFileName to use it in CPPUNIT_ASSERT_EQUAL()
+inline std::ostream& operator<<(std::ostream& o, const wxFileName& fn)
+{
+    return o << fn.GetFullPath();
+}
+
 // ----------------------------------------------------------------------------
 // TestFile: self deleting test file in temporary directory
 // ----------------------------------------------------------------------------