Jwc.Experiment.Xunit.TestCommandContext.TestCommandContext C# (CSharp) 메소드

TestCommandContext() 보호된 메소드

Initializes a new instance of the TestCommandContext class.
protected TestCommandContext ( ISpecimenBuilderFactory factory, IEnumerable arguments ) : System
factory ISpecimenBuilderFactory /// A factory to create test fixture. ///
arguments IEnumerable /// Explicit arguments of the test method. ///
리턴 System
        protected TestCommandContext(ISpecimenBuilderFactory factory, IEnumerable<object> arguments)
        {
            if (factory == null)
                throw new ArgumentNullException("factory");

            if (arguments == null)
                throw new ArgumentNullException("arguments");

            this.factory = factory;
            this.arguments = arguments;
        }