public void ShimmedMethod_Generates_From_Static_Call_With_Reference_Type_Param_And_Returns_Reference_Type()
        {
            var shimmedMethod = new ShimmedMethod <List <int> >(typeof(StaticMethodsTestClass).GetMethod("MethodWithReferenceTypeParamsAndReturn"));

            Assert.IsNotNull(shimmedMethod);
            Assert.IsNotNull(shimmedMethod.Method);
            Assert.IsNotNull(shimmedMethod.Shim);

            var        beforeDateTime = DateTime.Now;
            List <int> value          = null;

            PoseContext.Isolate(() => {
                value = StaticMethodsTestClass.MethodWithReferenceTypeParamsAndReturn(new List <int> {
                    3, 2, 1
                });
            }, new[] { shimmedMethod.Shim });
            Assert.IsNotNull(value);
            Assert.AreEqual(1, shimmedMethod.CallResults.Count);
            var callResult = shimmedMethod.CallResults.First();

            Assert.IsNotNull(callResult.Parameters);
            var afterDateTime = DateTime.Now;

            Assert.IsNotNull(callResult.CalledAt);
            Assert.IsTrue(beforeDateTime < callResult.CalledAt && callResult.CalledAt < afterDateTime);
            Assert.IsTrue(((List <int>)callResult.Parameters[0]).SequenceEqual(new List <int> {
                3, 2, 1
            }));
        }
示例#2
0
 public List <int> MethodWithReferenceTypeParamsAndReturn(List <int> args)
 {
     return(StaticMethodsTestClass.MethodWithReferenceTypeParamsAndReturn(args));
 }