]> granicus.if.org Git - icinga2/blobdiff - test/base-object.cpp
Add --units, --rate and --rate-multiplier support for the snmpv3 check command
[icinga2] / test / base-object.cpp
index 2db4c8fbe284f53ae311a3e44512afc46f3f5097..5fac6f7161cdd36da2b3bdda1fe93390fda886ad 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                *
@@ -17,8 +17,8 @@
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
  ******************************************************************************/
 
-#include "base/object.h"
-#include "base/value.h"
+#include "base/object.hpp"
+#include "base/value.hpp"
 #include <boost/test/unit_test.hpp>
 
 using namespace icinga;
@@ -30,7 +30,7 @@ public:
 
        TestObject::Ptr GetTestRef(void)
        {
-               return GetSelf();
+               return this;
        }
 };
 
@@ -38,13 +38,13 @@ BOOST_AUTO_TEST_SUITE(base_object)
 
 BOOST_AUTO_TEST_CASE(construct)
 {
-       Object::Ptr tobject = make_shared<TestObject>();
+       Object::Ptr tobject = new TestObject();
        BOOST_CHECK(tobject);
 }
 
 BOOST_AUTO_TEST_CASE(getself)
 {
-       TestObject::Ptr tobject = make_shared<TestObject>();
+       TestObject::Ptr tobject = new TestObject();
        TestObject::Ptr tobject_self = tobject->GetTestRef();
        BOOST_CHECK(tobject == tobject_self);
 
@@ -53,13 +53,4 @@ BOOST_AUTO_TEST_CASE(getself)
        BOOST_CHECK(vobject.IsObjectType<TestObject>());
 }
 
-BOOST_AUTO_TEST_CASE(weak)
-{
-       TestObject::Ptr tobject = make_shared<TestObject>();
-       TestObject::WeakPtr wtobject = tobject;
-       tobject.reset();
-       BOOST_CHECK(!tobject);
-       BOOST_CHECK(!wtobject.lock());
-}
-
 BOOST_AUTO_TEST_SUITE_END()