public void TestSearch1()
        {
            AddEntry("Hello World!");
            AddEntry("Foobar");

            using (var proxy = new LogFileSearchProxy(_scheduler, _logFile.Object, TimeSpan.Zero))
            {
                proxy.SearchTerm = "foobar";
                proxy.Property(x => x.Count).ShouldEventually().Be(1, TimeSpan.FromSeconds(5000000), "because we should be able to search through the file in a few seconds");

                proxy.Matches.Should().Equal(new[]
                    {
                        new LogMatch(1, new LogLineMatch(0, 6))
                    });
                proxy.Count.Should().Be(1);
            }
        }