git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28214
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/datetime.h"
// this test miscellaneous static wxDateTime functions
+
+#if TEST_ALL
+
static void TestTimeStatic()
{
wxPuts(_T("\n*** wxDateTime static methods test ***"));
}
}
+#endif // TEST_ALL
+
+#if TEST_INTERACTIVE
+
static void TestDateTimeInteractive()
{
wxPuts(_T("\n*** interactive wxDateTime tests ***"));
wxPuts(_T("\n*** done ***"));
}
+#endif // TEST_INTERACTIVE
+
+#if TEST_ALL
+
static void TestTimeMS()
{
wxPuts(_T("*** testing millisecond-resolution support in wxDateTime ***"));
wxPuts(wxEmptyString);
}
+#endif // TEST_ALL
+
#endif // TEST_DATETIME
// ----------------------------------------------------------------------------