Lines Matching refs:int_node
127 tree.define< config::int_node >("top_integer"); in ATF_TEST_CASE_BODY()
141 ATF_REQUIRE_EQ(12345, tree.lookup< config::int_node >("top_integer")); in ATF_TEST_CASE_BODY()
151 tree.define< config::int_node >("top_integer"); in ATF_TEST_CASE_BODY()
167 ATF_REQUIRE_EQ(8, tree.lookup< config::int_node >("top_integer")); in ATF_TEST_CASE_BODY()
175 tree.define< config::int_node >("first"); in ATF_TEST_CASE_BODY()
176 tree.define< config::int_node >("second"); in ATF_TEST_CASE_BODY()
184 ATF_REQUIRE_EQ(100, tree.lookup< config::int_node >("first")); in ATF_TEST_CASE_BODY()
185 ATF_REQUIRE_EQ(200, tree.lookup< config::int_node >("second")); in ATF_TEST_CASE_BODY()
193 tree.define< config::int_node >("first"); in ATF_TEST_CASE_BODY()
201 ATF_REQUIRE_EQ(200, tree.lookup< config::int_node >("first")); in ATF_TEST_CASE_BODY()
209 tree.define< config::int_node >("first"); in ATF_TEST_CASE_BODY()
210 tree.set< config::int_node >("first", 100); in ATF_TEST_CASE_BODY()
218 ATF_REQUIRE_EQ(1500, tree.lookup< config::int_node >("first")); in ATF_TEST_CASE_BODY()
227 tree.define< config::int_node >("root.a.integer"); in ATF_TEST_CASE_BODY()
241 ATF_REQUIRE_EQ(12345, tree.lookup< config::int_node >("root.a.integer")); in ATF_TEST_CASE_BODY()
250 tree.define< config::int_node >("a.first"); in ATF_TEST_CASE_BODY()
251 tree.define< config::int_node >("a.second"); in ATF_TEST_CASE_BODY()
260 ATF_REQUIRE_EQ(100, tree.lookup< config::int_node >("a.first")); in ATF_TEST_CASE_BODY()
261 ATF_REQUIRE_EQ(200, tree.lookup< config::int_node >("a.second")); in ATF_TEST_CASE_BODY()
269 tree.define< config::int_node >("a.first"); in ATF_TEST_CASE_BODY()
277 ATF_REQUIRE_EQ(200, tree.lookup< config::int_node >("a.first")); in ATF_TEST_CASE_BODY()
285 tree.define< config::int_node >("a.first"); in ATF_TEST_CASE_BODY()
286 tree.set< config::int_node >("a.first", 100); in ATF_TEST_CASE_BODY()
294 ATF_REQUIRE_EQ(1500, tree.lookup< config::int_node >("a.first")); in ATF_TEST_CASE_BODY()
367 tree.define< config::int_node >("the_key"); in ATF_TEST_CASE_BODY()
381 ATF_REQUIRE_EQ(35, tree.lookup< config::int_node >("the_key")); in ATF_TEST_CASE_BODY()