]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/testfile.h
No-PCH compilation fix
[wxWidgets.git] / tests / testfile.h
index d982ee9334457ff44d530549b35e799892fe65a9..6946c8a10fac9587ad42ce3ee6dfabf60de2fb4a 100644 (file)
 #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
 // ----------------------------------------------------------------------------