示例#1
0
 internal MocksaneWithResult(
     TInstance instance,
     MocksaneExpression mocksaneExpression,
     Func <MocksaneParameters, TResult> returnsFunction,
     Func <MocksaneParameters, bool> predicateFunction)
     : base(instance, mocksaneExpression, returnsFunction, predicateFunction)
 {
 }
 internal MocksaneVoid(
     TInstance instance,
     MocksaneExpression mocksaneExpression,
     Action <MocksaneParameters> callbackFunction,
     Func <MocksaneParameters, bool> predicateFunction)
     : base(instance, mocksaneExpression, callbackFunction, predicateFunction)
 {
 }
示例#3
0
 internal BaseMocksane(
     TInstance instance,
     MocksaneExpression mocksaneExpression,
     Func <MocksaneParameters, bool> predicateFunction)
 {
     Instance           = instance;
     MocksaneExpression = mocksaneExpression;
     PredicateFunction  = predicateFunction;
 }
        public static BaseMocksaneVoid <TInstance> Initialize <TInstance>(
            TInstance instance,
            Expression <Action <TInstance> > expression,
            Action <MocksaneParameters> callbackFunction      = null,
            Func <MocksaneParameters, bool> predicateFunction = null)
            where TInstance : class
        {
            var evaluation = MocksaneExpression.Evaluate(expression);

            Type unboundedType;
            Type boundedType;

            switch (evaluation.ParameterCount)
            {
            case 0:
                unboundedType = typeof(MocksaneVoid <>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance));
                break;

            case 1:
                unboundedType = typeof(MocksaneVoid <,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0]);
                break;

            case 2:
                unboundedType = typeof(MocksaneVoid <, ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1]);
                break;

            case 3:
                unboundedType = typeof(MocksaneVoid <, , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2]);
                break;

            case 4:
                unboundedType = typeof(MocksaneVoid <, , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3]);
                break;

            case 5:
                unboundedType = typeof(MocksaneVoid <, , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4]);
                break;

            case 6:
                unboundedType = typeof(MocksaneVoid <, , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5]);
                break;

            case 7:
                unboundedType = typeof(MocksaneVoid <, , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6]);
                break;

            case 8:
                unboundedType = typeof(MocksaneVoid <, , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7]);
                break;

            case 9:
                unboundedType = typeof(MocksaneVoid <, , , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7], evaluation.ParameterTypes[8]);
                break;

            case 10:
                unboundedType = typeof(MocksaneVoid <, , , , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7], evaluation.ParameterTypes[8], evaluation.ParameterTypes[9]);
                break;

            case 11:
                unboundedType = typeof(MocksaneVoid <, , , , , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7], evaluation.ParameterTypes[8], evaluation.ParameterTypes[9], evaluation.ParameterTypes[10]);
                break;

            case 12:
                unboundedType = typeof(MocksaneVoid <, , , , , , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7], evaluation.ParameterTypes[8], evaluation.ParameterTypes[9], evaluation.ParameterTypes[10], evaluation.ParameterTypes[11]);
                break;

            case 13:
                unboundedType = typeof(MocksaneVoid <, , , , , , , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7], evaluation.ParameterTypes[8], evaluation.ParameterTypes[9], evaluation.ParameterTypes[10], evaluation.ParameterTypes[11], evaluation.ParameterTypes[12]);
                break;

            case 14:
                unboundedType = typeof(MocksaneVoid <, , , , , , , , , , , , , ,>);
                boundedType   = unboundedType.MakeGenericType(typeof(TInstance), evaluation.ParameterTypes[0], evaluation.ParameterTypes[1], evaluation.ParameterTypes[2], evaluation.ParameterTypes[3], evaluation.ParameterTypes[4], evaluation.ParameterTypes[5], evaluation.ParameterTypes[6], evaluation.ParameterTypes[7], evaluation.ParameterTypes[8], evaluation.ParameterTypes[9], evaluation.ParameterTypes[10], evaluation.ParameterTypes[11], evaluation.ParameterTypes[12], evaluation.ParameterTypes[13]);
                break;

            default:
                throw new InvalidOperationException("The expression has more than the maximum number of parameters.");
            }

            var constructorInfo = boundedType.GetConstructor(
                BindingFlags.Instance | BindingFlags.NonPublic,
                null,
                new[]
            {
                typeof(TInstance),
                typeof(MocksaneExpression),
                typeof(Action <MocksaneParameters>),
                typeof(Func <MocksaneParameters, bool>),
            },
                null);

            if (constructorInfo == null)
            {
                throw new NotSupportedException("Something went wrong. This should never happen, please file a bug report!");
            }

            var mocksane = (BaseMocksaneVoid <TInstance>)constructorInfo.Invoke(new object[] { instance, evaluation, callbackFunction, predicateFunction });

            mocksane.InitializeHook();

            return(mocksane);
        }