]> granicus.if.org Git - icinga2/blobdiff - test/base-string.cpp
Merge pull request #7210 from Icinga/bugfix/boost-asio-deprecated
[icinga2] / test / base-string.cpp
index 83d9c8ad6cae0fdfeb39ca4096e3c5f3d5db9f26..835b1a643893ed4e4d1d5bb526b2d7da3f4a7a4d 100644 (file)
@@ -1,25 +1,7 @@
-/******************************************************************************
- * Icinga 2                                                                   *
- * Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)    *
- *                                                                            *
- * This program is free software; you can redistribute it and/or              *
- * modify it under the terms of the GNU General Public License                *
- * as published by the Free Software Foundation; either version 2             *
- * of the License, or (at your option) any later version.                     *
- *                                                                            *
- * This program is distributed in the hope that it will be useful,            *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
- * GNU General Public License for more details.                               *
- *                                                                            *
- * You should have received a copy of the GNU General Public License          *
- * along with this program; if not, write to the Free Software Foundation     *
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
- ******************************************************************************/
+/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 
 #include "base/string.hpp"
-#include <boost/test/unit_test.hpp>
-#include <boost/foreach.hpp>
+#include <BoostTestTargetConfig.h>
 
 using namespace icinga;
 
@@ -63,20 +45,16 @@ BOOST_AUTO_TEST_CASE(append)
 BOOST_AUTO_TEST_CASE(trim)
 {
        String s1 = "hello";
-       s1.Trim();
-       BOOST_CHECK(s1 == "hello");
+       BOOST_CHECK(s1.Trim() == "hello");
 
        String s2 = "  hello";
-       s2.Trim();
-       BOOST_CHECK(s2 == "hello");
+       BOOST_CHECK(s2.Trim() == "hello");
 
        String s3 = "hello ";
-       s3.Trim();
-       BOOST_CHECK(s3 == "hello");
+       BOOST_CHECK(s3.Trim() == "hello");
 
        String s4 = " hello ";
-       s4.Trim();
-       BOOST_CHECK(s4 == "hello");
+       BOOST_CHECK(s4.Trim() == "hello");
 }
 
 BOOST_AUTO_TEST_CASE(contains)
@@ -110,7 +88,7 @@ BOOST_AUTO_TEST_CASE(index)
        s[0] = 'x';
        BOOST_CHECK(s == "xello");
 
-       BOOST_FOREACH(char& ch, s) {
+       for (char& ch : s) {
                ch = 'y';
        }
        BOOST_CHECK(s == "yyyyy");