Add missing functions

This commit is contained in:
Franky Braem
2012-04-28 18:59:25 +00:00
parent 9690a4b50f
commit 5086b562fd
3 changed files with 45 additions and 1 deletions

View File

@@ -28,7 +28,7 @@
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
#include <iostream>
#include "StringTokenizerTest.h"
#include "CppUnit/TestCaller.h"
@@ -411,6 +411,7 @@ void StringTokenizerTest::testFind()
assert (2 == st.count("5"));
st.replace("3", "6", 4);
assert (1 == st.count("3"));
assert (1 == st.count("6"));
}

View File

@@ -47,6 +47,7 @@ public:
~StringTokenizerTest();
void testStringTokenizer();
void testFind();
void setUp();
void tearDown();