public void GivenRegexProjectEmptyEntry_ShouldExtractProjectEmptyEntryDefinition()
        {
            var dataService       = new DataService("[10:53:29] :            [exec] 44>");
            var dataDictionary    = new DataDictionary();
            var valueExtractor    = new ValueExtractor(dataDictionary);
            var projectEmptyEntry = EntryFactory.CreateProjectEmptyEntryFunc(1)(valueExtractor, dataService);

            Assert.Equal(EntryType.ProjectEmptyEntry(), projectEmptyEntry.EntryType);
            Assert.Equal((uint)44, projectEmptyEntry.ProjectId);
            Assert.Equal(new TimeSpan(10, 53, 29), projectEmptyEntry.Time);
        }