Răsfoiți Sursa

test: minor changes

Michele Caini 3 ani în urmă
părinte
comite
5c6a11cb8f
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      test/entt/entity/registry.cpp

+ 3 - 3
test/entt/entity/registry.cpp

@@ -1988,7 +1988,7 @@ TEST(RegistryDeathTest, RuntimePools) {
     ASSERT_DEATH(std::as_const(registry).storage<int>("other"_hs), "");
     ASSERT_DEATH(std::as_const(registry).storage<int>("other"_hs), "");
 }
 }
 
 
-TEST(Registry, StorageProxy) {
+TEST(Registry, Storage) {
     using namespace entt::literals;
     using namespace entt::literals;
 
 
     entt::registry registry;
     entt::registry registry;
@@ -2015,7 +2015,7 @@ TEST(Registry, StorageProxy) {
     }
     }
 }
 }
 
 
-TEST(Registry, StorageProxyIterator) {
+TEST(Registry, RegistryStorageIterator) {
     entt::registry registry;
     entt::registry registry;
     const auto entity = registry.create();
     const auto entity = registry.create();
     registry.emplace<int>(entity);
     registry.emplace<int>(entity);
@@ -2070,7 +2070,7 @@ TEST(Registry, StorageProxyIterator) {
     ASSERT_NE(cit, std::as_const(registry).storage().end());
     ASSERT_NE(cit, std::as_const(registry).storage().end());
 }
 }
 
 
-TEST(Registry, StorageProxyIteratorConversion) {
+TEST(Registry, RegistryStorageIteratorConversion) {
     entt::registry registry;
     entt::registry registry;
     const auto entity = registry.create();
     const auto entity = registry.create();
     registry.emplace<int>(entity);
     registry.emplace<int>(entity);