more test cases

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36548 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-12-23 23:27:25 +00:00
parent 39b7aa3f5e
commit 2461117002

View File

@@ -73,6 +73,8 @@ static const struct TokenizerTestData
gs_testData[] =
{
{ _T(""), _T(" "), wxTOKEN_DEFAULT, 0 },
{ _T(""), _T(" "), wxTOKEN_RET_EMPTY, 0 },
{ _T(""), _T(" "), wxTOKEN_RET_EMPTY_ALL, 0 },
{ _T("Hello, world"), _T(" "), wxTOKEN_DEFAULT, 2 },
{ _T("Hello, world "), _T(" "), wxTOKEN_DEFAULT, 2 },
@@ -92,7 +94,7 @@ gs_testData[] =
{ _T("1:2::3:"), _T(":"), wxTOKEN_STRTOK, 3 },
{ _T("1:2::3::"), _T(":"), wxTOKEN_DEFAULT, 5 },
{ _T("1:2::3::"), _T(":"), wxTOKEN_RET_EMPTY , 5 },
{ _T("1:2::3::"), _T(":"), wxTOKEN_RET_EMPTY, 4 },
{ _T("1:2::3::"), _T(":"), wxTOKEN_RET_EMPTY_ALL, 6 },
{ _T("1:2::3::"), _T(":"), wxTOKEN_RET_DELIMS, 5 },
{ _T("1:2::3::"), _T(":"), wxTOKEN_STRTOK, 3 },
@@ -117,7 +119,7 @@ void TokenizerTestCase::GetCount()
const TokenizerTestData& ttd = gs_testData[n];
wxStringTokenizer tkz(ttd.str, ttd.delims, ttd.mode);
CPPUNIT_ASSERT( tkz.CountTokens() == ttd.count );
CPPUNIT_ASSERT_EQUAL( ttd.count, tkz.CountTokens() );
size_t count = 0;
while ( tkz.HasMoreTokens() )