mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
fix typo
This commit is contained in:
@@ -49,24 +49,24 @@ public:
|
||||
void testClear();
|
||||
void testCacheSize0();
|
||||
void testCacheSize1();
|
||||
void testCacheSize2();
|
||||
void testCacheSizeN();
|
||||
void testDuplicateAdd();
|
||||
void testUpdate();
|
||||
|
||||
void setUp();
|
||||
void tearDown();
|
||||
static CppUnit::Test* suite();
|
||||
void testCacheSize2();
|
||||
void testCacheSizeN();
|
||||
void testDuplicateAdd();
|
||||
void testUpdate();
|
||||
|
||||
void setUp();
|
||||
void tearDown();
|
||||
static CppUnit::Test* suite();
|
||||
|
||||
private:
|
||||
void onUpdate(const void* pSender, const Poco::KeyValueArgs<int, int>& args);
|
||||
void onAdd(const void* pSender, const Poco::KeyValueArgs<int, int>& args);
|
||||
void onRemove(const void* pSender, const int& args);
|
||||
void onUpdate(const void* pSender, const Poco::KeyValueArgs<int, int>& args);
|
||||
void onAdd(const void* pSender, const Poco::KeyValueArgs<int, int>& args);
|
||||
void onRemove(const void* pSender, const int& args);
|
||||
|
||||
private:
|
||||
int addCnt;
|
||||
int updateCnt;
|
||||
int removeCnt;
|
||||
int addCnt;
|
||||
int updateCnt;
|
||||
int removeCnt;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -31,32 +31,27 @@
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
#ifndef StringTokenizerTest_INCLUDED
|
||||
#define StringTokenizerTest_INCLUDED
|
||||
|
||||
|
||||
#include "Poco/Foundation.h"
|
||||
#include "CppUnit/TestCase.h"
|
||||
|
||||
|
||||
class StringTokenizerTest: public CppUnit::TestCase
|
||||
{
|
||||
public:
|
||||
StringTokenizerTest(const std::string& name);
|
||||
~StringTokenizerTest();
|
||||
~StringTokenizerTest();
|
||||
|
||||
void testStringTokenizer();
|
||||
void testFind();
|
||||
void testStringTokenizer();
|
||||
void testFind();
|
||||
|
||||
void setUp();
|
||||
void tearDown();
|
||||
void setUp();
|
||||
void tearDown();
|
||||
|
||||
static CppUnit::Test* suite();
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
|
||||
#endif // StringTokenizerTest_INCLUDED
|
||||
|
||||
Reference in New Issue
Block a user