I am attempting to Mock an IDataRecord interface.
So far I have:
var mockIDataRecord = new Mock<IDataRecord>();
mockIDataRecord.SetupGet(c => c["id"]).Returns(7);
var z = mockIDataRecord["id"];
But Visual Studio throws a compilation error on the last line of that:
Error 2 Cannot apply indexing with [] to an expression of type 'Moq.Mock <System.Data.IDataRecord>'
Any suggestions?