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