]> 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 c09479a4b4fe00dade61b30fc0ab5085ea398856..5fac6f7161cdd36da2b3bdda1fe93390fda886ad 100644 (file)
@@ -1,6 +1,6 @@
 /******************************************************************************
  * Icinga 2                                                                   *
- * Copyright (C) 2012-2013 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 "base/object.h"
-#include "base/value.h"
+#include "base/object.hpp"
+#include "base/value.hpp"
 #include <boost/test/unit_test.hpp>
-#include <boost/smart_ptr/make_shared.hpp>
 
 using namespace icinga;
 
 class TestObject : public Object
 {
 public:
-       typedef boost::shared_ptr<TestObject> Ptr;
-       typedef boost::weak_ptr<TestObject> WeakPtr;
+       DECLARE_PTR_TYPEDEFS(TestObject);
 
        TestObject::Ptr GetTestRef(void)
        {
-               return GetSelf();
+               return this;
        }
 };
 
@@ -40,13 +38,13 @@ BOOST_AUTO_TEST_SUITE(base_object)
 
 BOOST_AUTO_TEST_CASE(construct)
 {
-       Object::Ptr tobject = boost::make_shared<TestObject>();
+       Object::Ptr tobject = new TestObject();
        BOOST_CHECK(tobject);
 }
 
 BOOST_AUTO_TEST_CASE(getself)
 {
-       TestObject::Ptr tobject = boost::make_shared<TestObject>();
+       TestObject::Ptr tobject = new TestObject();
        TestObject::Ptr tobject_self = tobject->GetTestRef();
        BOOST_CHECK(tobject == tobject_self);
 
@@ -55,13 +53,4 @@ BOOST_AUTO_TEST_CASE(getself)
        BOOST_CHECK(vobject.IsObjectType<TestObject>());
 }
 
-BOOST_AUTO_TEST_CASE(weak)
-{
-       TestObject::Ptr tobject = boost::make_shared<TestObject>();
-       TestObject::WeakPtr wtobject = tobject;
-       tobject.reset();
-       BOOST_CHECK(!tobject);
-       BOOST_CHECK(!wtobject.lock());
-}
-
 BOOST_AUTO_TEST_SUITE_END()