test: prepare to cleanup clang-tidy config and track things to review in future
This commit is contained in:
@@ -41,10 +41,10 @@ TEST(Example, CustomIdentifier) {
|
||||
ASSERT_FALSE((registry.all_of<int, char>(entity)));
|
||||
ASSERT_EQ(registry.try_get<int>(entity), nullptr);
|
||||
|
||||
registry.emplace<int>(entity, 42);
|
||||
registry.emplace<int>(entity, 42); // NOLINT
|
||||
|
||||
ASSERT_TRUE((registry.any_of<int, char>(entity)));
|
||||
ASSERT_EQ(registry.get<int>(entity), 42);
|
||||
ASSERT_EQ(registry.get<int>(entity), 42); // NOLINT
|
||||
|
||||
registry.destroy(entity);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user