I am not sure whether this is a correct way but I wrote the following and it works:
[TestMethod()]
[Isolated]
public void LongProcExecuteTest_NoResultSet()
{
#region Setup
string storedProcedure = "my sp";
string instance = "my instance";
SqlParameter[] sqlParams = new SqlParameter[] { new SqlParameter("param1", "value1"), new SqlParameter("param2", "value2") };
int expected = 2;
// mock GetConnString() ...
// mock SqlConnection
SqlConnection fakedSqlConnection = Isolate.Fake.Instance<SqlConnection>();
Isolate.SwapNextInstance<SqlConnection>().With(fakedSqlConnection);
// mock Open()
Action openAction = delegate() { fakedSqlConnection.Open(); };
Isolate.WhenCalled(openAction).IgnoreCall();
// mock CreateCommand()
SqlCommand fakedSqlCommand = Isolate.Fake.Instance<SqlCommand>(Members.ReturnRecursiveFakes);
Func<SqlCommand> createCommandFunc = delegate() {return fakedSqlConnection.CreateCommand();};
Isolate.WhenCalled<SqlCommand>(createCommandFunc).WillReturn(fakedSqlCommand);
// mock ExecuteNonQuery()
Func<int> executeNonQueryFunc = delegate() { return fakedSqlCommand.ExecuteNonQuery(); };
Isolate.WhenCalled<int>(executeNonQueryFunc).WillReturn(expected);
#endregion
// exercise
int actual = (int) Utils.LongProcExecute(storedProcedure, sqlParams);
// verify
Assert.AreEqual(expected, actual);
Isolate.Verify.WasCalledWithExactArguments(connectionFunc);
Isolate.Verify.WasCalledWithExactArguments(openAction);
Isolate.Verify.WasCalledWithExactArguments(executeNonQueryFunc);
}
What I am not testing are:
Whether the stored procedure name is available in DB
Whether the Sql parameters are valid for the stored procedure.
Hmm :?: