forked from Icinga/icinga2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase-object.cpp
More file actions
39 lines (30 loc) · 746 Bytes
/
base-object.cpp
File metadata and controls
39 lines (30 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/object.hpp"
#include "base/value.hpp"
#include <BoostTestTargetConfig.h>
using namespace icinga;
class TestObject : public Object
{
public:
DECLARE_PTR_TYPEDEFS(TestObject);
TestObject::Ptr GetTestRef()
{
return this;
}
};
BOOST_AUTO_TEST_SUITE(base_object)
BOOST_AUTO_TEST_CASE(construct)
{
Object::Ptr tobject = new TestObject();
BOOST_CHECK(tobject);
}
BOOST_AUTO_TEST_CASE(getself)
{
TestObject::Ptr tobject = new TestObject();
TestObject::Ptr tobject_self = tobject->GetTestRef();
BOOST_CHECK(tobject == tobject_self);
Value vobject = tobject;
BOOST_CHECK(!vobject.IsEmpty());
BOOST_CHECK(vobject.IsObjectType<TestObject>());
}
BOOST_AUTO_TEST_SUITE_END()