Lines Matching refs:value
187 * @tc.desc: test serializable GetValue and SetValue with invalid string value .
197 std::string value;
198 auto ret = Serializable::GetValue(json, "key", value);
204 ret = Serializable::GetValue(json, "key", value);
212 * @tc.desc: test serializable GetValue and SetValue with invalid uint32_t value .
222 uint32_t value;
223 auto ret = Serializable::GetValue(json, "key", value);
229 ret = Serializable::GetValue(json, "key", value);
237 * @tc.desc: test serializable GetValue and SetValue with invalid int32_t value .
247 int32_t value;
248 auto ret = Serializable::GetValue(json, "key", value);
254 ret = Serializable::GetValue(json, "key", value);
262 * @tc.desc: test serializable GetValue and SetValue with invalid int64_t value .
272 int64_t value;
273 auto ret = Serializable::GetValue(json, "key", value);
279 ret = Serializable::GetValue(json, "key", value);
287 * @tc.desc: test serializable GetValue and SetValue with invalid bool value .
297 bool value;
298 auto ret = Serializable::GetValue(json, "key", value);
304 ret = Serializable::GetValue(json, "key", value);
312 * @tc.desc: test serializable GetValue and SetValue with invalid std::vector<uint8_t> value .
322 std::vector<uint8_t> value;
323 auto ret = Serializable::GetValue(json, "key", value);
329 ret = Serializable::GetValue(json, "key", value);
337 * @tc.desc: test serializable SetValue with valid value.
388 * @tc.desc: test serializable SetValue with valid value.