| 83 | }; |
| 84 | |
| 85 | TEST_F(WebCacheTest, AddReturnsGreaterZeroTs) { |
| 86 | auto expires_ts = _uut->add(a_key, a_valptr); |
| 87 | ASSERT_GT(expires_ts, ceph::real_clock::zero()); |
| 88 | } |
| 89 | |
| 90 | TEST_F(WebCacheTest, MultipleAddsToEmptyReturnFirstTs) { |
| 91 | const std::vector<ceph::real_time> inserts = { |
nothing calls this directly
no test coverage detected