diff options
author | Max Kellermann <max@duempel.org> | 2014-12-03 21:39:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-04 09:14:28 +0100 |
commit | e69bef3ce389967b8239648e4b9eaec42217bc95 (patch) | |
tree | 603870b6d042017c7a93f1909afc91395cf1415b /test/test_util.cxx | |
parent | c1c0fc79bcdc9caabe42fc3716ea2e2ea7b3eb3d (diff) | |
download | mpd-e69bef3ce389967b8239648e4b9eaec42217bc95.tar.gz mpd-e69bef3ce389967b8239648e4b9eaec42217bc95.tar.xz mpd-e69bef3ce389967b8239648e4b9eaec42217bc95.zip |
util/SplitString: new utility class
Replaces GLib's g_strsplit().
Diffstat (limited to '')
-rw-r--r-- | test/test_util.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_util.cxx b/test/test_util.cxx index e9b49c4da..c2d73d7d9 100644 --- a/test/test_util.cxx +++ b/test/test_util.cxx @@ -4,6 +4,7 @@ #include "config.h" #include "DivideStringTest.hxx" +#include "SplitStringTest.hxx" #include "UriUtilTest.hxx" #include "TestCircularBuffer.hxx" @@ -15,6 +16,7 @@ #include <stdlib.h> CPPUNIT_TEST_SUITE_REGISTRATION(DivideStringTest); +CPPUNIT_TEST_SUITE_REGISTRATION(SplitStringTest); CPPUNIT_TEST_SUITE_REGISTRATION(UriUtilTest); CPPUNIT_TEST_SUITE_REGISTRATION(TestCircularBuffer); |