datetime.cpp 566 B

12345678910111213141516171819
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: tests/benchmarks/datetime.cpp
  3. // Purpose: wxDateTime benchmarks
  4. // Author: Vadim Zeitlin
  5. // Created: 2011-05-23
  6. // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
  7. // Licence: wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9. #include "wx/datetime.h"
  10. #include "bench.h"
  11. BENCHMARK_FUNC(ParseDate)
  12. {
  13. wxDateTime dt;
  14. return dt.ParseDate("May 23, 2011") && dt.GetMonth() == wxDateTime::May;
  15. }