X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/caa96da73962c44562fe5744a5850855a2658fa0..0d1903dbda864780eec30efdc4e91776bdbfd21b:/tests/testfile.h diff --git a/tests/testfile.h b/tests/testfile.h index d982ee9334..519acbe8b2 100644 --- a/tests/testfile.h +++ b/tests/testfile.h @@ -2,9 +2,8 @@ // Name: tests/testfile.h // Purpose: TestFile class // Author: Mike Wetherell -// RCS-ID: $Id$ // Copyright: (c) 2005 Mike Wetherell -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_TESTS_TEMPFILE_H_ @@ -13,6 +12,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 // ----------------------------------------------------------------------------