public ProjectBuilderFactory(TestProjectFolders testProjectFolders, TestRunConfiguration testRunConfiguration, CurrentVersionDriver currentVersionDriver, ConfigurationGeneratorFactory configurationGeneratorFactory, BindingsGeneratorFactory bindingsGeneratorFactory, FeatureFileGenerator featureFileGenerator,
                              Folders folders)
 {
     _testProjectFolders            = testProjectFolders;
     _testRunConfiguration          = testRunConfiguration;
     _currentVersionDriver          = currentVersionDriver;
     _configurationGeneratorFactory = configurationGeneratorFactory;
     _bindingsGeneratorFactory      = bindingsGeneratorFactory;
     _featureFileGenerator          = featureFileGenerator;
     _folders = folders;
 }
        public ProjectBuilder(TestProjectFolders testProjectFolders, FeatureFileGenerator featureFileGenerator, BindingsGeneratorFactory bindingsGeneratorFactory, ConfigurationGeneratorFactory configurationGeneratorFactory, Configuration configuration, CurrentVersionDriver currentVersionDriver, Folders folders)
        {
            _testProjectFolders            = testProjectFolders;
            _featureFileGenerator          = featureFileGenerator;
            _bindingsGeneratorFactory      = bindingsGeneratorFactory;
            _configurationGeneratorFactory = configurationGeneratorFactory;
            Configuration         = configuration;
            _currentVersionDriver = currentVersionDriver;
            _folders = folders;
            string projectGuidString = $"{ProjectGuid:N}".Substring(24);

            ProjectName = $"TestProj_{projectGuidString}";
        }