X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/caa96da73962c44562fe5744a5850855a2658fa0..9f7405d0731ed80c8d98a4c43fcfc2e12163e588:/tests/testfile.h diff --git a/tests/testfile.h b/tests/testfile.h index d982ee9334..7e27753765 100644 --- a/tests/testfile.h +++ b/tests/testfile.h @@ -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_ @@ -13,6 +13,14 @@ #include "wx/filefn.h" #include "wx/filename.h" +#include + +// 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 // ----------------------------------------------------------------------------