当前位置: 首页>>代码示例>>C#>>正文


C# IDbCommand.Stub方法代码示例

本文整理汇总了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
        }
开发者ID:ouyangyl,项目名称:MySpringNet,代码行数:25,代码来源:AbstractAdoQueryTests.cs

示例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 );
 }
开发者ID:StarTrekRedneck,项目名称:IDbEz,代码行数:9,代码来源:DbCommandExtensionsSpecs.cs

示例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));
    }
开发者ID:re-motion,项目名称:Relinq-SqlBackend,代码行数:20,代码来源:QueryResultRetrieverTest.cs


注:本文中的IDbCommand.Stub方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。