diff options
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/model/TypesystemTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/core/model/TypesystemTest.cpp b/test/core/model/TypesystemTest.cpp index 72762e5..12efc46 100644 --- a/test/core/model/TypesystemTest.cpp +++ b/test/core/model/TypesystemTest.cpp @@ -850,10 +850,10 @@ TEST(Typesystem, rtti) Manager mgr{1}; Rooted<Typesystem> typesystem{new Typesystem{mgr, "typesystem"}}; ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::Type)); - ASSERT_FALSE(typesystem->aggregatedOf(RttiTypes::StringType)); - ASSERT_FALSE(typesystem->aggregatedOf(RttiTypes::IntType)); - ASSERT_FALSE(typesystem->aggregatedOf(RttiTypes::DoubleType)); - ASSERT_FALSE(typesystem->aggregatedOf(RttiTypes::BoolType)); + ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::StringType)); + ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::IntType)); + ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::DoubleType)); + ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::BoolType)); ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::EnumType)); ASSERT_TRUE(typesystem->aggregatedOf(RttiTypes::StructType)); ASSERT_FALSE(typesystem->aggregatedOf(RttiTypes::ArrayType)); |