public void GivenRegexStageSkippedEntry_ShouldExtractStageSkippedEntryDetails()
        {
            var dataService    = new DataService("[11:57:05] : [Step 1/6] Disabled build step this is Label  (here) is skipped");
            var dataDictionary = new DataDictionary();
            var valueExtractor = new ValueExtractor(dataDictionary);
            var stageSkipped   = EntryFactory.CreateStageSkippedEntryFunc(1)(valueExtractor, dataService);

            Assert.Equal(EntryType.StageSkippedType(), stageSkipped.EntryType);
            Assert.Equal((uint)1, stageSkipped.StageNo);
            Assert.Equal((uint)6, stageSkipped.StageCount);
            Assert.Equal("this is Label  (here)", stageSkipped.Label);
        }