public void TestInvalidate()
 {
     var collection = new LogFileListenerCollection(new Mock<ILogFile>().Object);
     collection.OnRead(1);
     collection.CurrentLineIndex.Should().Be(1);
     collection.Invalidate(0, 1);
     collection.CurrentLineIndex.Should().Be(0);
 }