X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/906c935a80b10d53cecf57f71ab5f3f4f1d529ec..eb6b14dc71402c42e0474779bfcd6e878383071e:/tests/testdate.h diff --git a/tests/testdate.h b/tests/testdate.h index 5d28568da6..dacf33818c 100644 --- a/tests/testdate.h +++ b/tests/testdate.h @@ -2,7 +2,6 @@ // Name: tests/testdate.h // Purpose: Unit test helpers for dealing with wxDateTime. // Author: Vadim Zeitlin -// RCS-ID: $Id$ // Copyright: (c) 2011 Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -20,6 +19,17 @@ inline std::ostream& operator<<(std::ostream& ostr, const wxDateTime& dt) return ostr; } +// need this to be able to use CPPUNIT_ASSERT_EQUAL with wxDateSpan objects +inline std::ostream& operator<<(std::ostream& ostr, const wxDateSpan& span) +{ + ostr << span.GetYears() << "Y, " + << span.GetMonths() << "M, " + << span.GetWeeks() << "W, " + << span.GetDays() << "D"; + + return ostr; +} + WX_CPPUNIT_ALLOW_EQUALS_TO_INT(wxDateTime::wxDateTime_t) #endif // _WX_TESTS_TESTDATE_H_