test: minor changes

This commit is contained in:
Michele Caini
2023-04-18 13:28:01 +02:00
parent 5c3d8360c2
commit 1c6b533609

View File

@@ -1287,6 +1287,8 @@ TEST(MultiComponentView, Storage) {
ASSERT_NE(view.storage<int>(), nullptr);
ASSERT_NE(view.storage<1u>(), nullptr);
ASSERT_NE(view.storage<double>(), nullptr);
ASSERT_NE(view.storage<3u>(), nullptr);
ASSERT_EQ(view.size_hint(), 0u);
@@ -1332,6 +1334,8 @@ TEST(MultiComponentView, Storage) {
ASSERT_EQ(view.storage<0u>(), nullptr);
ASSERT_EQ(view.storage<const char>(), nullptr);
ASSERT_EQ(view.storage<2u>(), nullptr);
ASSERT_EQ(view.storage<const float>(), nullptr);
}
TEST(View, Pipe) {