@@ -241,6 +241,16 void TestVariableCacheController::testProvideNotInCacheDateTimeList() | |||
|
241 | 241 | notInCacheSqp = notInCach.at(1); |
|
242 | 242 | QCOMPARE(notInCacheSqp.m_TStart, static_cast<double>(te1.toMSecsSinceEpoch())); |
|
243 | 243 | QCOMPARE(notInCacheSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); |
|
244 | ||
|
245 | ||
|
246 | // 12th case ts0 < ts < te0 | |
|
247 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 10, 0}}; | |
|
248 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 50, 0}}; | |
|
249 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |
|
250 | static_cast<double>(te.toMSecsSinceEpoch())}; | |
|
251 | ||
|
252 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |
|
253 | QCOMPARE(notInCach.size(), 0); | |
|
244 | 254 | } |
|
245 | 255 | |
|
246 | 256 |
General Comments 0
You need to be logged in to leave comments.
Login now