From 5f233f326d054b4cf5bb94d58876f344629e7e72 Mon Sep 17 00:00:00 2001 From: cxl Date: Wed, 30 Sep 2020 12:57:45 +0000 Subject: [PATCH] .autotest git-svn-id: svn://ultimatepp.org/upp/trunk@15178 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- autotest/StringTest/StringTest.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autotest/StringTest/StringTest.cpp b/autotest/StringTest/StringTest.cpp index 8df930ebe..c47385106 100644 --- a/autotest/StringTest/StringTest.cpp +++ b/autotest/StringTest/StringTest.cpp @@ -4,6 +4,8 @@ using namespace Upp; CONSOLE_APP_MAIN { + StdLogSetup(LOG_COUT|LOG_FILE); + String x = "0123456789012345"; ASSERT(x.FindFirstOf("654") == 4); ASSERT(x.FindFirstOf("46") == 4); @@ -121,4 +123,6 @@ CONSOLE_APP_MAIN sb[0] = 'a'; bb = sb; ASSERT(bb == "a2"); + + LOG("============== OK"); }