diff options
Diffstat (limited to 'test/container.test.cpp')
-rw-r--r-- | test/container.test.cpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/test/container.test.cpp b/test/container.test.cpp new file mode 100644 index 0000000..54290ea --- /dev/null +++ b/test/container.test.cpp @@ -0,0 +1,41 @@ +#include "yacppdic/container.hpp" +#include "yacppdic/auto_wirable.hpp" +#include "gtest/gtest.h" + +#include <string_view> + +TEST(ContainerTest, BindAndGet) +{ + auto container = yacppdic::Container(); + + class IObject + { + public: + virtual ~IObject() = default; + + virtual void destroy() = 0; + + virtual std::string_view name() = 0; + }; + + class Object : public IObject, public yacppdic::AutoWirable<IObject, Object> + { + public: + void destroy() {} + + std::string_view name() + { + return "A object"; + } + }; + + container.bind<IObject>().to<Object>(); + + auto object = container.get<IObject>(); + + EXPECT_EQ(object->name(), "A object"); + + auto object_two = container.get<IObject>(); + + EXPECT_NE(object, object_two); +} |