| 84 | }; |
| 85 | |
| 86 | TEST_F(TupleCacheMgrTest, Disabled) { |
| 87 | TupleCacheMgr cache = GetCache(""); |
| 88 | ASSERT_OK(cache.Init()); |
| 89 | TupleCacheMgr::UniqueHandle handle = cache.Lookup("a_key"); |
| 90 | EXPECT_FALSE(cache.IsAvailableForRead(handle)); |
| 91 | EXPECT_FALSE(cache.IsAvailableForWrite(handle)); |
| 92 | } |
| 93 | |
| 94 | TEST_F(TupleCacheMgrTest, TestMiss) { |
| 95 | TupleCacheMgr cache = GetCache(); |
nothing calls this directly
no test coverage detected