]> granicus.if.org Git - icinga2/blobdiff - test/base-type.cpp
Add --units, --rate and --rate-multiplier support for the snmpv3 check command
[icinga2] / test / base-type.cpp
index a8263b7888eb88fd74fb1312f9ca60f4546e03b7..e20cee7c3cc53450b360255216aa7d9a9551b156 100644 (file)
@@ -1,6 +1,6 @@
 /******************************************************************************
  * Icinga 2                                                                   *
- * Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)    *
+ * Copyright (C) 2012-2016 Icinga Development Team (https://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                *
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
  ******************************************************************************/
 
-#include "icinga/perfdatavalue.h"
-#include "base/dictionary.h"
-#include "base/objectlock.h"
-#include "base/application.h"
-#include "base/type.h"
+#include "icinga/perfdatavalue.hpp"
+#include "base/dictionary.hpp"
+#include "base/objectlock.hpp"
+#include "base/application.hpp"
+#include "base/type.hpp"
 #include <boost/test/unit_test.hpp>
 #include <boost/foreach.hpp>
 #include <boost/tuple/tuple.hpp>
@@ -32,15 +32,15 @@ BOOST_AUTO_TEST_SUITE(base_type)
 
 BOOST_AUTO_TEST_CASE(gettype)
 {
-       const Type *t = Type::GetByName("Application");
+       Type::Ptr t = Type::GetByName("Application");
 
        BOOST_CHECK(t);
 }
 
 BOOST_AUTO_TEST_CASE(assign)
 {
-       const Type *t1 = Type::GetByName("Application");
-       const Type *t2 = Type::GetByName("DynamicObject");
+       Type::Ptr t1 = Type::GetByName("Application");
+       Type::Ptr t2 = Type::GetByName("ConfigObject");
 
        BOOST_CHECK(t1->IsAssignableFrom(t1));
        BOOST_CHECK(t2->IsAssignableFrom(t1));
@@ -49,14 +49,14 @@ BOOST_AUTO_TEST_CASE(assign)
 
 BOOST_AUTO_TEST_CASE(byname)
 {
-       const Type *t = Type::GetByName("Application");
+       Type::Ptr t = Type::GetByName("Application");
 
        BOOST_CHECK(t);
 }
 
 BOOST_AUTO_TEST_CASE(instantiate)
 {
-       const Type *t = Type::GetByName("PerfdataValue");
+       Type::Ptr t = Type::GetByName("PerfdataValue");
 
        Object::Ptr p = t->Instantiate();