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:
@@ -73,6 +73,8 @@ static const struct TokenizerTestData
|
|||||||
gs_testData[] =
|
gs_testData[] =
|
||||||
{
|
{
|
||||||
{ _T(""), _T(" "), wxTOKEN_DEFAULT, 0 },
|
{ _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 },
|
||||||
{ _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_STRTOK, 3 },
|
||||||
|
|
||||||
{ _T("1:2::3::"), _T(":"), wxTOKEN_DEFAULT, 5 },
|
{ _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_EMPTY_ALL, 6 },
|
||||||
{ _T("1:2::3::"), _T(":"), wxTOKEN_RET_DELIMS, 5 },
|
{ _T("1:2::3::"), _T(":"), wxTOKEN_RET_DELIMS, 5 },
|
||||||
{ _T("1:2::3::"), _T(":"), wxTOKEN_STRTOK, 3 },
|
{ _T("1:2::3::"), _T(":"), wxTOKEN_STRTOK, 3 },
|
||||||
@@ -117,7 +119,7 @@ void TokenizerTestCase::GetCount()
|
|||||||
const TokenizerTestData& ttd = gs_testData[n];
|
const TokenizerTestData& ttd = gs_testData[n];
|
||||||
|
|
||||||
wxStringTokenizer tkz(ttd.str, ttd.delims, ttd.mode);
|
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;
|
size_t count = 0;
|
||||||
while ( tkz.HasMoreTokens() )
|
while ( tkz.HasMoreTokens() )
|
||||||
|
Reference in New Issue
Block a user