本文整理汇总了C#中IDbCommand.Stub方法的典型用法代码示例。如果您正苦于以下问题:C# IDbCommand.Stub方法的具体用法?C# IDbCommand.Stub怎么用?C# IDbCommand.Stub使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDbCommand
的用法示例。
在下文中一共展示了IDbCommand.Stub方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetUpMocks
public void SetUpMocks()
{
provider = MockRepository.GenerateMock<IDbProvider>();
IDbConnection connection = MockRepository.GenerateMock<IDbConnection>();
provider.Stub(x => x.CreateConnection()).Return(connection).Repeat.Once();
// Creating a query (setting DbProvider property)
// will call new DbParameters(IDbProvider), which is a real pain to mock.
// to store the declared parameters.
command = MockRepository.GenerateMock<IDbCommand>();
//This IDbCommand is used as a container for the underlying parameter collection.
provider.Stub(x => x.CreateCommand()).Return(command).Repeat.Once();
//Create a real instance of IDbParameters to stored the declared parameters
IDbProvider realDbProvider = DbProviderFactory.GetDbProvider("System.Data.SqlClient");
IDbParameters dbParameters = new DbParameters(realDbProvider);
//Pass real instance into mock instance.
command.Stub(x => x.Parameters).Return(dbParameters.DataParameterCollection).Repeat.Once();
provider.Stub(x => x.CreateCommand()).Return(command).Repeat.Once();
// done with init of DbParameters mock/stubbing
}
示例2: SetupTestFixture
public void SetupTestFixture()
{
_dbCommand = MockRepository.GenerateMock<IDbCommand>();
_dataParameter = MockRepository.GenerateMock<IDbDataParameter>();
_dbCommand.Stub( c => c.CreateParameter() ).Return( _dataParameter );
_parameterName = "Given name";
_parameterValue = new { Property = "given value" };
_resultParameter = DbCommandExtensions.CreateParameter( _dbCommand, _parameterName, _parameterValue );
}
示例3: SetUp
public void SetUp ()
{
_dataReaderMock = MockRepository.GenerateMock<IDataReader>();
_dataParameter = MockRepository.GenerateMock<IDbDataParameter>();
_commandMock = MockRepository.GenerateMock<IDbCommand>();
_commandMock.Stub (stub => stub.ExecuteReader()).Return (_dataReaderMock);
_commandMock.Stub (stub => stub.CreateParameter()).Return (_dataParameter);
_connectionMock = MockRepository.GenerateMock<IDbConnection>();
_connectionMock.Stub (stub => stub.CreateCommand()).Return (_commandMock);
_connectionManagerStub = MockRepository.GenerateStub<IConnectionManager>();
_connectionManagerStub.Stub (stub => stub.Open()).Return (_connectionMock);
_resolverStub = MockRepository.GenerateMock<IReverseMappingResolver>();
_projection = row => row.GetValue<string> (new ColumnID ("test", 0));
_scalarProjection = row => row.GetValue<int> (new ColumnID ("test", 0));
}