Exemple #1
0
 private string[] GetPostReleaseDefectiveFiles(CommitSelectionExpression commits)
 {
     return(commits
            .Modifications()
            .InCommits()
            .CodeBlocks()
            .InModifications()
            .DefectiveFiles(PredictionRelease, null)
            .Reselect(FileSelector)
            .ExistInRevision(PredictionRelease)
            .Select(x => x.Path)
            .ToArray());
 }
 private string[] GetPostReleaseDefectiveFiles(CommitSelectionExpression commits)
 {
     return commits
         .Modifications()
             .InCommits()
         .CodeBlocks()
             .InModifications()
         .DefectiveFiles(PredictionRelease, null)
             .Reselect(FileSelector)
             .ExistInRevision(PredictionRelease)
         .Select(x => x.Path)
         .ToArray();
 }