.autotest

git-svn-id: svn://ultimatepp.org/upp/trunk@7293 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-04-22 09:32:11 +00:00
parent 51982e3415
commit 0b8218df21

View file

@ -82,7 +82,7 @@ CONSOLE_APP_MAIN
TEST(Join(w, ";"), "alfa;beta;;gamma;delta");
TEST(Join(w, ".", true), "alfa.beta.gamma.delta");
Vector<String> v = Split(";;;hello;;", false);
Vector<String> v = Split(";;;hello;;", ';', false);
TEST(Join(v, ";"), ";;;hello;;");
TEST(Join(v, ";", true), "hello");