コード例 #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TestRunConfiguration"/> class.
        /// </summary>
        /// <param name="name">
        /// The name of Run Configuration.
        /// </param>
        public TestRunConfiguration(string name)
        {
            EqtAssert.ParameterNotNull(name, "name");

            this.name = name;

            this.runDeploymentRoot = string.Empty;
            this.id = new TestRunConfigurationId();
        }
コード例 #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TestRunConfiguration"/> class.
        /// </summary>
        /// <param name="name">
        /// The name of Run Configuration.
        /// </param>
        /// <param name="trxFileHelper">
        /// InternalFileHelper instance to use in file operations.
        /// </param>
        internal TestRunConfiguration(string name, TrxFileHelper trxFileHelper)
        {
            EqtAssert.ParameterNotNull(name, "name");

            this.name = name;
            this.runDeploymentRoot = string.Empty;
            this.id            = new TestRunConfigurationId();
            this.trxFileHelper = trxFileHelper;
        }