| 184 | } |
| 185 | |
| 186 | void TestBasics() { |
| 187 | constexpr size_t N = Traits::TestSizeFor(4); |
| 188 | const auto ints = CheckFourValues<N>(); |
| 189 | EXPECT_EQ(UsesStaticStorage(ints), !Traits::CanOverflow()); |
| 190 | } |
| 191 | |
| 192 | void TestAlwaysStatic() { |
| 193 | const auto ints = CheckFourValues<4>(); |
no test coverage detected