| 10 | TYPED_TEST_SUITE(customizations, FixedTypes); |
| 11 | |
| 12 | TYPED_TEST(customizations, swap) |
| 13 | { |
| 14 | using std::swap; |
| 15 | |
| 16 | using P = TypeParam; |
| 17 | P x{1}, y{2}; |
| 18 | swap(x, y); |
| 19 | EXPECT_EQ(P{2}, x); |
| 20 | EXPECT_EQ(P{1}, y); |
| 21 | } |
| 22 | |
| 23 | TYPED_TEST(customizations, hash) |
| 24 | { |
nothing calls this directly
no test coverage detected