| 26 | }; |
| 27 | |
| 28 | TEST_F(DictGroupTest, KeyMaxLength) { |
| 29 | const DictGroupPtr& dictGroup = CreateDictGroupForConversion(); |
| 30 | EXPECT_EQ(6, dictGroup->KeyMaxLength()); |
| 31 | EXPECT_EQ(6, dictGroup->GetDicts().front()->KeyMaxLength()); |
| 32 | EXPECT_EQ(3, dictGroup->GetDicts().back()->KeyMaxLength()); |
| 33 | } |
| 34 | |
| 35 | TEST_F(DictGroupTest, MatchPolicyDefaultsToShortCircuit) { |
| 36 | const DictGroupPtr& dictGroup = CreateDictGroupForConversion(); |
nothing calls this directly
no test coverage detected