diff --git a/tests/strings/tokenizer.cpp b/tests/strings/tokenizer.cpp index d5f9a8ff27..17e9a911ea 100644 --- a/tests/strings/tokenizer.cpp +++ b/tests/strings/tokenizer.cpp @@ -75,9 +75,12 @@ gs_testData[] = { _T(""), _T(" "), wxTOKEN_DEFAULT, 0 }, { _T(""), _T(" "), wxTOKEN_RET_EMPTY, 0 }, { _T(""), _T(" "), wxTOKEN_RET_EMPTY_ALL, 0 }, + { _T(""), _T(" "), wxTOKEN_RET_DELIMS, 0 }, { _T(":"), _T(":"), wxTOKEN_RET_EMPTY, 1 }, + { _T(":"), _T(":"), wxTOKEN_RET_DELIMS, 1 }, { _T(":"), _T(":"), wxTOKEN_RET_EMPTY_ALL, 2 }, { _T("::"), _T(":"), wxTOKEN_RET_EMPTY, 1 }, + { _T("::"), _T(":"), wxTOKEN_RET_DELIMS, 1 }, { _T("::"), _T(":"), wxTOKEN_RET_EMPTY_ALL, 3 }, { _T("Hello, world"), _T(" "), wxTOKEN_DEFAULT, 2 },