X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a5f226861c387b03f64153945f67414c69c213fc..0c80814ffe7d0c2a0179345b8884727b9fb335ff:/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_