Lines Matching refs:exp_properties

816     config::properties_map exp_properties;  in ATF_TEST_CASE_BODY()  local
817 exp_properties["plain"] = "1234"; in ATF_TEST_CASE_BODY()
818 exp_properties["static.first"] = "-3"; in ATF_TEST_CASE_BODY()
819 exp_properties["static.second"] = "some text"; in ATF_TEST_CASE_BODY()
820 exp_properties["dynamic.first"] = "hello"; in ATF_TEST_CASE_BODY()
821 exp_properties["dynamic.second"] = "bye"; in ATF_TEST_CASE_BODY()
824 ATF_REQUIRE(exp_properties == properties); in ATF_TEST_CASE_BODY()
839 config::properties_map exp_properties; in ATF_TEST_CASE_BODY() local
840 exp_properties["static.first"] = "-3"; in ATF_TEST_CASE_BODY()
843 ATF_REQUIRE(exp_properties == properties); in ATF_TEST_CASE_BODY()
861 config::properties_map exp_properties; in ATF_TEST_CASE_BODY() local
862 exp_properties["root.a.b.c.first"] = "1"; in ATF_TEST_CASE_BODY()
863 exp_properties["root.a.b.c.second"] = "2"; in ATF_TEST_CASE_BODY()
864 exp_properties["root.a.d.first"] = "3"; in ATF_TEST_CASE_BODY()
865 ATF_REQUIRE(exp_properties == tree.all_properties("root")); in ATF_TEST_CASE_BODY()
866 ATF_REQUIRE(exp_properties == tree.all_properties("root.a")); in ATF_TEST_CASE_BODY()
870 config::properties_map exp_properties; in ATF_TEST_CASE_BODY() local
871 exp_properties["root.a.b.c.first"] = "1"; in ATF_TEST_CASE_BODY()
872 exp_properties["root.a.b.c.second"] = "2"; in ATF_TEST_CASE_BODY()
873 ATF_REQUIRE(exp_properties == tree.all_properties("root.a.b")); in ATF_TEST_CASE_BODY()
874 ATF_REQUIRE(exp_properties == tree.all_properties("root.a.b.c")); in ATF_TEST_CASE_BODY()
878 config::properties_map exp_properties; in ATF_TEST_CASE_BODY() local
879 exp_properties["root.a.d.first"] = "3"; in ATF_TEST_CASE_BODY()
880 ATF_REQUIRE(exp_properties == tree.all_properties("root.a.d")); in ATF_TEST_CASE_BODY()
910 config::properties_map exp_properties; in ATF_TEST_CASE_BODY() local
911 exp_properties["b.c.first"] = "1"; in ATF_TEST_CASE_BODY()
912 exp_properties["b.c.second"] = "2"; in ATF_TEST_CASE_BODY()
913 exp_properties["d.first"] = "3"; in ATF_TEST_CASE_BODY()
914 ATF_REQUIRE(exp_properties == tree.all_properties("root.a", true)); in ATF_TEST_CASE_BODY()