diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-12-21 00:40:52 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2014-12-21 00:40:52 +0100 |
commit | 989cc6d8064a95426962588f806bb987a6896e7f (patch) | |
tree | 9e8b4b923dff3305396fba8414fc46c2a9d59c07 /test | |
parent | 30c60d9317c7f56b17dce82a4a02fd50c3a7dfc2 (diff) |
moved Rtti from managed to common folder, added Function header
Diffstat (limited to 'test')
-rw-r--r-- | test/core/common/RttiTest.cpp (renamed from test/core/managed/RttiTest.cpp) | 2 | ||||
-rw-r--r-- | test/core/managed/ManagedTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/core/managed/RttiTest.cpp b/test/core/common/RttiTest.cpp index 091bdea..64b4bb0 100644 --- a/test/core/managed/RttiTest.cpp +++ b/test/core/common/RttiTest.cpp @@ -22,7 +22,7 @@ #include <gtest/gtest.h> -#include <core/managed/Rtti.hpp> +#include <core/common/Rtti.hpp> namespace ousia { diff --git a/test/core/managed/ManagedTest.cpp b/test/core/managed/ManagedTest.cpp index c88cf7a..61b89ef 100644 --- a/test/core/managed/ManagedTest.cpp +++ b/test/core/managed/ManagedTest.cpp @@ -94,7 +94,7 @@ TEST(Managed, type) ASSERT_EQ(&Type2, &m2->type()); ASSERT_EQ(&Type3, &m3->type()); ASSERT_EQ(&Type4, &m4->type()); - ASSERT_EQ(&RttiBase::None, &m5->type()); + ASSERT_EQ(&RttiTypes::None, &m5->type()); ASSERT_EQ(&Type1, &typeOf<TypeTestManaged1>()); ASSERT_EQ(&Type1, &typeOf(*m1)); |