StatLight.Core.Configuration.InputOptions.InputOptions C# (CSharp) Méthode

InputOptions() public méthode

public InputOptions ( ) : System
Résultat System
        public InputOptions()
        {
            // Setup some "sane" defaults
            WindowGeometry = new WindowGeometry();
            UseRemoteTestPage = false;
            MethodsToTest = new List<string>();
            MicrosoftTestingFrameworkVersion = null;
            TagFilters = String.Empty;
            UnitTestProviderType = UnitTestProviderType.Undefined;
            NumberOfBrowserHosts = 1;
            QueryString = String.Empty;
            WebBrowserType = WebBrowserType.SelfHosted;
            ForceBrowserStart = true;
            XapPaths = new List<string>();
            DllPaths = new List<string>();
            ExtensionDllPaths = new List<string>();
            ReportOutputPath = String.Empty;
            ReportOutputFileType = ReportOutputFileType.StatLight;
            ContinuousIntegrationMode = false;
            OutputForTeamCity = false;
            StartWebServerOnly = false;
            IsRequestingDebug = false;
            SettingsOverride = new Dictionary<string, string>();
            IsPhoneRun = false;
        }