Lines Matching full:ms
54 sut = makeThreshold(0ms, "90.0", discrete::Severity::critical); in SetUp()
86 sut = makeThreshold(0ms, GetParam(), discrete::Severity::critical); in TEST_P()
102 EXPECT_THROW(makeThreshold(0ms, GetParam()), std::invalid_argument); in TEST_P()
112 auto sut = makeThreshold(0ms, "12.3", discrete::Severity::ok, "non-empty"); in TEST_F()
121 auto sut = makeThreshold(0ms, "12.3", discrete::Severity::ok, ""); in TEST_F()
137 Milliseconds sleepAfter = 0ms) : in UpdateParams()
149 Milliseconds waitMin = 0ms) : in ExpectedParams()
180 *os << "{ DwellTime: " << o.dwellTime.count() << "ms "; in PrintTo()
186 << ", SleepAfter: " << sleepAfter.count() << "ms }, "; in PrintTo()
192 << ", waitMin: " << waitMin.count() << "ms }, "; in PrintTo()
200 Milliseconds dwellTime = 0ms;
210 if (duration != 0ms) in sleep()
242 sut->sensorUpdated(*sensorMocks[index], 42ms, value); in testBodySensorIsUpdatedMultipleTimes()
265 sut = makeThreshold(0ms, GetParam().thresholdValue); in SetUp()
307 .DwellTime(200ms)
309 .Updates({{0, 90.0, 100ms}, {0, 91.0}, {0, 90.0}})
310 .Expected({{0, 90.0, 300ms}}),
312 .DwellTime(100ms)
314 .Updates({{0, 90.0, 100ms}})
315 .Expected({{0, 90.0, 100ms}}),
317 .DwellTime(1000ms)
319 .Updates({{0, 90.0, 700ms},
320 {0, 91.0, 100ms},
321 {0, 90.0, 300ms},
322 {0, 91.0, 100ms}})
325 .DwellTime(200ms)
328 {1, 89.0, 100ms},
329 {1, 90.0, 100ms},
330 {1, 89.0, 100ms},
331 {1, 90.0, 300ms},
332 {1, 89.0, 100ms}})
333 .Expected({{0, 90, 200ms}, {1, 90, 500ms}})));