From 6041324a65cfdb878154af68d74aac2c86372440 Mon Sep 17 00:00:00 2001 From: Benjamin Paassen Date: Sun, 15 Feb 2015 20:46:21 +0100 Subject: added cardinality type. --- test/core/model/TypesystemTest.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/core') diff --git a/test/core/model/TypesystemTest.cpp b/test/core/model/TypesystemTest.cpp index 9b5872c..ae6f11f 100644 --- a/test/core/model/TypesystemTest.cpp +++ b/test/core/model/TypesystemTest.cpp @@ -961,6 +961,7 @@ TEST(Typesystem, rtti) ASSERT_TRUE(typesystem->composedOf(&RttiTypes::IntType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::DoubleType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::BoolType)); + ASSERT_TRUE(typesystem->composedOf(&RttiTypes::CardinalityType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::EnumType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::StructType)); ASSERT_FALSE(typesystem->composedOf(&RttiTypes::ArrayType)); @@ -982,6 +983,7 @@ TEST(SystemTypesystem, rtti) ASSERT_TRUE(typesystem->composedOf(&RttiTypes::IntType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::DoubleType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::BoolType)); + ASSERT_TRUE(typesystem->composedOf(&RttiTypes::CardinalityType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::EnumType)); ASSERT_TRUE(typesystem->composedOf(&RttiTypes::StructType)); ASSERT_FALSE(typesystem->composedOf(&RttiTypes::ArrayType)); -- cgit v1.2.3