Attribute Trail behavior
| 11 | |
| 12 | // Attribute Trail behavior |
| 13 | TEST(AttributeTrailTest, AttributeTrailEmptyStep) { |
| 14 | std::string step = "step"; |
| 15 | CelValue step_value = CelValue::CreateString(&step); |
| 16 | AttributeTrail trail; |
| 17 | ASSERT_TRUE(trail.Step(&step).empty()); |
| 18 | ASSERT_TRUE(trail.Step(CreateCelAttributeQualifier(step_value)).empty()); |
| 19 | } |
| 20 | |
| 21 | TEST(AttributeTrailTest, AttributeTrailStep) { |
| 22 | std::string step = "step"; |
nothing calls this directly
no test coverage detected