I have this simple test code:
MockManager.MockAll<global::System.Data.SqlClient.SqlConnection>(Constructor.Mocked);
MockManager.MockAll<global::System.Data.SqlClient.SqlCommand>(Constructor.Mocked);
using (RecordExpectations recorder = RecorderManager.StartRecording())
{
recorder.DefaultBehavior.CheckArguments();
global::System.Data.SqlClient.SqlConnection connection_mocked = new global::System.Data.SqlClient.SqlConnection("");
global::System.Data.SqlClient.SqlCommand command_mocked = new global::System.Data.SqlClient.SqlCommand("", connection_mocked);
connection_mocked.Open();
recorder.ExpectAndReturn(command_mocked.ExecuteNonQuery(), 0);
command_mocked.Dispose();
connection_mocked.Dispose();
}
using (global::System.Data.SqlClient.SqlConnection connection = new global::System.Data.SqlClient.SqlConnection(""))
{
using (global::System.Data.SqlClient.SqlCommand command = new global::System.Data.SqlClient.SqlCommand("", connection))
{
connection.Open();
command.ExecuteNonQuery();
}
}
If I have a simple test method like this:
[TestMethod]
public void SqlTest()
{
// test code
}
the test passes.
But if I change it to this:
[TestMethod]
public void SqlTest()
{
MockManager.Init();
// test code
MockManager.Verify();
}
I get this exception:
System.Reflection.TargetInvocationException was unhandled
Message="Exception has been thrown by the target of an invocation."
Source="mscorlib"
StackTrace:
at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
at System.Reflection.RuntimeConstructorInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
at TypeMock.MockManager.c(String A_0)
at TypeMock.MockManager.e(String A_0)
at TypeMock.MockManager.a(String A_0, String A_1, Object A_2, Object A_3, Boolean A_4)
at TypeMock.InternalMockManager.isMocked(Object that, String typeName, String methodName, Object methodParameters, Boolean isInjected)
at System.Data.SqlClient.SqlConnection.Dispose(Boolean disposing)
at System.ComponentModel.Component.Finalize()
when exiting the test method.
What am I doing wrong?
It happens with any usage of MockManager.Verify():
- with the VerifyMocks decorator attribute
- with the ClearMocks decorator attribute