Lines Matching defs:props
772 brillo::VariantDictionary props;
779 manager()->store().GetProperties(&props, &error);
780 ASSERT_FALSE(props.find(kCheckPortalListProperty) == props.end());
781 EXPECT_TRUE(props[kCheckPortalListProperty].IsTypeCompatible<string>());
782 EXPECT_EQ(props[kCheckPortalListProperty].Get<string>(), expected);
785 brillo::VariantDictionary props;
791 manager()->store().GetProperties(&props, &error);
792 ASSERT_FALSE(props.find(kOfflineModeProperty) == props.end());
793 EXPECT_TRUE(props[kOfflineModeProperty].IsTypeCompatible<bool>());
794 EXPECT_EQ(props[kOfflineModeProperty].Get<bool>(), expected);
803 brillo::VariantDictionary props;
805 manager()->store().GetProperties(&props, &error);
806 ASSERT_FALSE(props.find(kDevicesProperty) == props.end());
808 props[kDevicesProperty].IsTypeCompatible<vector<dbus::ObjectPath>>());
810 props[kDevicesProperty].Get<vector<dbus::ObjectPath>>();
817 brillo::VariantDictionary props;
819 manager()->store().GetProperties(&props, &error);
820 ASSERT_FALSE(props.find(kServicesProperty) == props.end());
822 props[kServicesProperty].IsTypeCompatible<vector<dbus::ObjectPath>>());