Lines Matching refs:section
170 const config_section_node_t *section = config_section_begin(config); in TEST_F() local
171 EXPECT_TRUE(section != NULL); in TEST_F()
172 const char *section_name = config_section_name(section); in TEST_F()
173 EXPECT_TRUE(section != NULL); in TEST_F()
180 const config_section_node_t *section = config_section_begin(config); in TEST_F() local
181 EXPECT_TRUE(section != NULL); in TEST_F()
182 section = config_section_next(section); in TEST_F()
183 EXPECT_TRUE(section != NULL); in TEST_F()
184 const char *section_name = config_section_name(section); in TEST_F()
185 EXPECT_TRUE(section != NULL); in TEST_F()
192 const config_section_node_t * section = config_section_begin(config); in TEST_F() local
193 section = config_section_next(section); in TEST_F()
194 section = config_section_next(section); in TEST_F()
195 EXPECT_EQ(section, config_section_end(config)); in TEST_F()