Lines Matching refs:value
87 double value; member
90 UpdateParams(size_t sensor, double value, in UpdateParams()
92 sensor(sensor), value(value), sleepAfter(sleepAfter) in UpdateParams()
99 double value; member
102 ExpectedParams(size_t sensor, double value, in ExpectedParams()
104 sensor(sensor), value(value), waitMin(waitMin) in ExpectedParams()
151 for (const double value : o.initialValues) in PrintTo() local
153 *os << "{ SensorIndex: " << idx << ", Value: " << value << " }, "; in PrintTo()
157 for (const auto& [index, value, sleepAfter] : o.updates) in PrintTo()
159 *os << "{ SensorIndex: " << index << ", Value: " << value in PrintTo()
163 for (const auto& [index, value, waitMin] : o.expected) in PrintTo()
165 *os << "{ SensorIndex: " << index << ", Value: " << value in PrintTo()
201 for (const auto& [index, value, waitMin] : GetParam().expected) in testBodySensorIsUpdatedMultipleTimes()
205 _, TriggerValue(value))) in testBodySensorIsUpdatedMultipleTimes()
216 for (const double value : GetParam().initialValues) in testBodySensorIsUpdatedMultipleTimes() local
218 sut->sensorUpdated(*sensorMocks[idx], 0ms, value); in testBodySensorIsUpdatedMultipleTimes()
222 for (const auto& [index, value, sleepAfter] : GetParam().updates) in testBodySensorIsUpdatedMultipleTimes()
227 sut->sensorUpdated(*sensorMocks[index], 42ms, value); in testBodySensorIsUpdatedMultipleTimes()
232 for (const auto& [index, value, waitMin] : GetParam().expected) in testBodySensorIsUpdatedMultipleTimes()