Browse Source

test: minor changes

Michele Caini 5 years ago
parent
commit
c86790c6b8
2 changed files with 6 additions and 6 deletions
  1. 2 2
      test/entt/entity/group.cpp
  2. 4 4
      test/entt/entity/view.cpp

+ 2 - 2
test/entt/entity/group.cpp

@@ -146,7 +146,7 @@ TEST(NonOwningGroup, Empty) {
     ASSERT_TRUE(registry.group(entt::get<double, char, int, float>).empty());
 }
 
-TEST(NonOwningGroup, Proxy) {
+TEST(NonOwningGroup, EachAndProxy) {
     entt::registry registry;
     auto group = registry.group(entt::get<int, char>);
 
@@ -709,7 +709,7 @@ TEST(OwningGroup, Empty) {
     ASSERT_TRUE((registry.group<double, float>(entt::get<char, int>).empty()));
 }
 
-TEST(OwningGroup, Proxy) {
+TEST(OwningGroup, EachAndProxy) {
     entt::registry registry;
     auto group = registry.group<int>(entt::get<char>);
 

+ 4 - 4
test/entt/entity/view.cpp

@@ -107,7 +107,7 @@ TEST(SingleComponentView, Empty) {
     ASSERT_EQ(view.rbegin(), view.rend());
 }
 
-TEST(SingleComponentView, Proxy) {
+TEST(SingleComponentView, EachAndProxy) {
     entt::registry registry;
 
     registry.emplace<int>(registry.create());
@@ -430,7 +430,7 @@ TEST(MultiComponentView, Empty) {
     ASSERT_EQ(view.rbegin(), view.rend());
 }
 
-TEST(MultiComponentView, Proxy) {
+TEST(MultiComponentView, EachAndProxy) {
     entt::registry registry;
 
     const auto e0 = registry.create();
@@ -470,7 +470,7 @@ TEST(MultiComponentView, Proxy) {
     ASSERT_EQ(cnt, std::size_t{0});
 }
 
-TEST(MultiComponentView, EachWithSuggestedType) {
+TEST(MultiComponentView, EachAndProxyWithSuggestedType) {
     entt::registry registry;
 
     for(auto i = 0; i < 3; ++i) {
@@ -516,7 +516,7 @@ TEST(MultiComponentView, EachWithSuggestedType) {
     }
 }
 
-TEST(MultiComponentView, EachWithHoles) {
+TEST(MultiComponentView, EachAndProxyWithHoles) {
     entt::registry registry;
 
     const auto e0 = registry.create();