| 63 | } |
| 64 | |
| 65 | TEST(ContinuousBufferTest, InitialSize) |
| 66 | { |
| 67 | // Construct a buffer of a certain initial size |
| 68 | render::ContinuousBuffer<int> buffer(2 << 16); |
| 69 | EXPECT_NE(buffer.getBufferStart(), nullptr); |
| 70 | } |
| 71 | |
| 72 | TEST(ContinuousBufferTest, ZeroInitialSize) |
| 73 | { |
nothing calls this directly
no test coverage detected