| 113 | |
| 114 | template<class ContainerType> |
| 115 | void refGetValueOrDefaultTestGetSomeNumbers( |
| 116 | const ContainerType &container) { |
| 117 | EXPECT_EQ(3, getValueOrDefault(container, 3, 5)); |
| 118 | EXPECT_EQ(5, getValueOrDefault(container, 0, 5)); |
| 119 | EXPECT_EQ(int(), getValueOrDefault(container, 11)); |
| 120 | } |
| 121 | |
| 122 | TEST_F(ContainerTests, |
| 123 | GetValueOrDefaultForSet) { |
no test coverage detected