Jwc.Experiment.Xunit.TestCaseCommandContext.TestCaseCommandContext C# (CSharp) Method

TestCaseCommandContext() private method

private TestCaseCommandContext ( IMethodInfo testMethod, IMethodInfo actualMethod, object actualObject, ISpecimenBuilderFactory factory, IEnumerable arguments ) : System
testMethod IMethodInfo
actualMethod IMethodInfo
actualObject object
factory ISpecimenBuilderFactory
arguments IEnumerable
return System
        public TestCaseCommandContext(
            IMethodInfo testMethod,
            IMethodInfo actualMethod,
            object actualObject,
            ISpecimenBuilderFactory factory,
            IEnumerable<object> arguments)
            : base(factory, arguments)
        {
            if (testMethod == null)
                throw new ArgumentNullException("testMethod");

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

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

            this.testMethod = testMethod;
            this.actualMethod = actualMethod;
            this.actualObject = actualObject;
        }