Lines Matching full:updates
85 OnChangeParams& Updates(std::vector<UpdateParams> val) in Updates() function
87 updates = std::move(val); in Updates()
99 *os << "{ Updates: [ "; in PrintTo()
100 for (const auto& [index, value] : o.updates) in PrintTo()
112 std::vector<UpdateParams> updates; member
123 Values(OnChangeParams().Updates({{0, 80.0}}).Expected({{0, 80.0}}),
125 .Updates({{0, 80.0}, {1, 81.0}})
128 .Updates({{0, 80.0}, {0, 90.0}})
131 .Updates({{0, 80.0}, {1, 90.0}, {0, 90.0}})
134 .Updates({{0, 80.0}, {1, 80.0}, {1, 90.0}, {0, 90.0}})
152 for (const auto& [index, value] : GetParam().updates) in TEST_P()