test: prepare to cleanup clang-tidy config and track things to review in future

This commit is contained in:
Michele Caini
2024-01-10 17:35:27 +01:00
parent b152c63dd6
commit 2b092c2fce
51 changed files with 750 additions and 747 deletions

View File

@@ -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);