| 34 | } |
| 35 | |
| 36 | TEST(ProfileBufferTest, Empty) { |
| 37 | ProfileBuffer buffer(/*max_size*/ 0, /*enabled*/ true); |
| 38 | EXPECT_EQ(0, buffer.Size()); |
| 39 | } |
| 40 | |
| 41 | TEST(ProfileBufferTest, AddEvent) { |
| 42 | ProfileBuffer buffer(/*max_size*/ 10, /*enabled*/ true); |
nothing calls this directly
no test coverage detected