public XmlResultsGenerator(
     MutationSessionChoices choices,
     SessionController sessionController,
     ITestsContainer testsContainer,
     IMutantsCache mutantsCache,
     ICodeVisualizer codeVisualizer)
 {
     _choices           = choices;
     _sessionController = sessionController;
     _testsContainer    = testsContainer;
     _mutantsCache      = mutantsCache;
     _codeVisualizer    = codeVisualizer;
 }
 public XmlResultsGenerator(
     MutationSessionChoices choices,
     SessionController sessionController,
     ITestsContainer testsContainer,
     IMutantsCache mutantsCache,
     ICodeVisualizer codeVisualizer)
 {
     _choices = choices;
     _sessionController = sessionController;
     _testsContainer = testsContainer;
     _mutantsCache = mutantsCache;
     _codeVisualizer = codeVisualizer;
 }
 public MutationTestingSession()
 {
     MutantsGrouped = new List <AssemblyNode>();
     Filter         = MutationFilter.AllowAll();
     Choices        = new MutationSessionChoices();
 }
 public MutationTestingSession()
 {
     MutantsGrouped = new List<AssemblyNode>();
     Filter = MutationFilter.AllowAll();
     Choices = new MutationSessionChoices();
 }