Home | History | Annotate | Download | only in libpropertyinfoserializer

Lines Matching refs:test_node

57   TrieNode test_node;
58 ASSERT_TRUE(root_node.FindChildForString("test", 4, &test_node));
60 EXPECT_STREQ("test", test_node.name());
61 EXPECT_STREQ("1st", property_info_area->context(test_node.context_index()));
62 EXPECT_STREQ("1st", property_info_area->type(test_node.type_index()));
64 EXPECT_EQ(0U, test_node.num_child_nodes());
66 EXPECT_EQ(1U, test_node.num_prefixes());
68 auto prefix = test_node.prefix(0);
75 EXPECT_EQ(3U, test_node.num_exact_matches());
77 auto match1 = test_node.exact_match(0);
78 auto match2 = test_node.exact_match(1);
79 auto match3 = test_node.exact_match(2);