/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "gtest/gtest.h" #include "paddle/pten/core/utils/type_registry.h" namespace pten { namespace tests { template class Base { public: TypeInfo> type_info() const { return type_info_; } private: template friend class pten::TypeInfoTraits; TypeInfo> type_info_{TypeInfo>::kUnknownType}; }; template class DerivedA : public Base, public TypeInfoTraits, DerivedA> { public: static const char* name() { return "DerivedA"; } }; template class DerivedB : public Base, public TypeInfoTraits, DerivedB> { public: static const char* name() { return "DerivedB"; } }; template void check_type_info() { std::unique_ptr> base(new Base); std::unique_ptr> derived_a(new DerivedA); std::unique_ptr> derived_b(new DerivedB); EXPECT_EQ(DerivedA::classof(derived_a.get()), true); EXPECT_EQ(DerivedB::classof(derived_b.get()), true); EXPECT_EQ(DerivedB::classof(derived_a.get()), false); EXPECT_EQ(DerivedA::classof(derived_b.get()), false); EXPECT_EQ(base->type_info().id(), 0); EXPECT_EQ(derived_a->type_info().id(), 1); EXPECT_EQ(derived_b->type_info().id(), 2); EXPECT_EQ(base->type_info().name(), "Unknown"); EXPECT_EQ(derived_a->type_info().name(), "DerivedA"); EXPECT_EQ(derived_b->type_info().name(), "DerivedB"); } TEST(type_info, base) { check_type_info(); check_type_info(); } } // namespace tests } // namespace pten