From 40152925d51548122ffee555fce9648016b96a1e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 22 Oct 2009 11:34:43 +0000 Subject: [PATCH] Extract operator<<(ostream, wxFileName) from filename test. Putting this function in a header allows to reuse it in other tests, e.g. the upcoming wxFileSystemWatcher one. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62473 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/filename/filenametest.cpp | 10 +--------- tests/testfile.h | 8 ++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/filename/filenametest.cpp b/tests/filename/filenametest.cpp index 7e85380c1b..eefd5ffd62 100644 --- a/tests/filename/filenametest.cpp +++ b/tests/filename/filenametest.cpp @@ -28,15 +28,7 @@ #include "wx/msw/registry.h" #endif // __WXMSW__ -// ---------------------------------------------------------------------------- -// local functions -// ---------------------------------------------------------------------------- - -// 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(); -} +#include "testfile.h" // ---------------------------------------------------------------------------- // test data diff --git a/tests/testfile.h b/tests/testfile.h index d982ee9334..6946c8a10f 100644 --- a/tests/testfile.h +++ b/tests/testfile.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 // ---------------------------------------------------------------------------- -- 2.45.2