(seededEntries LogEntries)
| 568 | } |
| 569 | |
| 570 | func (qh *testQueryHandler) seedEntries(seededEntries LogEntries) { |
| 571 | qh.lock.Lock() |
| 572 | qh.entries = append(qh.entries, seededEntries...) |
| 573 | qh.lock.Unlock() |
| 574 | } |
| 575 | |
| 576 | func TestChannelCacheBackgroundTaskWithIllegalTimeInterval(t *testing.T) { |
| 577 | base.SetUpTestLogging(t, base.LevelWarn, base.KeyCache) |
no test coverage detected