Hi,
I am trying to mock the call to the SaveChanges method on a Entity Framework data context object.
Here is the method to test:
public static Account AddNewAccount(Account newAccount)
{
if (newAccount.ID == 0)
throw new AccountCreationException(ReturnCodes.AccountIDAlreadyExists, null, newAccount);
try
{
using (CoreAccountsEntities db = new CoreAccountsEntities())
{
db.AddToAccount(newAccount);
db.SaveChanges();
return newAccount;
}
}
catch (Exception ex)
{
throw new AccountCreationException(ReturnCodes.GeneralError, ex, newAccount);
}
}
In this method, I want to mock the db.SaveChanges, and the return of the newAccount now populated with a new ID. Here is the test I have made so far:
[TestMethod]
[VerifyMocks]
public void AddAccountSavesNewAccountToDatabaseAndReturnsNewAccountWithAccountID()
{
Account newAccount = new Account();
newAccount.AccountName = "New unit test account";
newAccount.CannotHaveInternalTransactions = true;
newAccount.CanOverdraft = false;
newAccount.CanReceive = true;
newAccount.CanReceiveBankTransactions = false;
newAccount.CanReceiveCreditCardTransactions = false;
newAccount.CanSend = true;
newAccount.Currency = "EUR";
newAccount.LastUpdated = DateTime.Now;
newAccount.SupportsSMSBlock = false;
Account savedAccount;
savedAccount.ID = 1;
savedAccount.AccountName = "New unit test account";
savedAccount.CannotHaveInternalTransactions = true;
newAcsavedAccountcount.CanOverdraft = false;
savedAccount.CanReceive = true;
savedAccount.CanReceiveBankTransactions = false;
savedAccount.CanReceiveCreditCardTransactions = false;
savedAccount.CanSend = true;
savedAccount.Currency = "EUR";
savedAccount.LastUpdated = DateTime.Now;
savedAccount.SupportsSMSBlock = false;
using (RecordExpectations recorder = RecorderManager.StartRecording())
{
CoreAccountsEntities db = new CoreAccountsEntities();
db. <== This is where the SaveChanges() method don't appear...
}
newAccount.ID = 1;
Assert.AreEqual<Account>(newAccount, savedAccount);
}
I have checked to see that the SaveChanges method is in fact public, so I am stuck. Please be kind as I am a total newbie with TypeMock... (and mocking in general)
Morten