From 8aa57160a07dac914f0a086a2d8388bff8071269 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 23 Dec 2005 23:54:50 +0000 Subject: [PATCH] even more test cases git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36550 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/strings/tokenizer.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/strings/tokenizer.cpp b/tests/strings/tokenizer.cpp index 4bb97f3f81..d5f9a8ff27 100644 --- a/tests/strings/tokenizer.cpp +++ b/tests/strings/tokenizer.cpp @@ -75,6 +75,10 @@ gs_testData[] = { _T(""), _T(" "), wxTOKEN_DEFAULT, 0 }, { _T(""), _T(" "), wxTOKEN_RET_EMPTY, 0 }, { _T(""), _T(" "), wxTOKEN_RET_EMPTY_ALL, 0 }, + { _T(":"), _T(":"), wxTOKEN_RET_EMPTY, 1 }, + { _T(":"), _T(":"), wxTOKEN_RET_EMPTY_ALL, 2 }, + { _T("::"), _T(":"), wxTOKEN_RET_EMPTY, 1 }, + { _T("::"), _T(":"), wxTOKEN_RET_EMPTY_ALL, 3 }, { _T("Hello, world"), _T(" "), wxTOKEN_DEFAULT, 2 }, { _T("Hello, world "), _T(" "), wxTOKEN_DEFAULT, 2 }, -- 2.45.2