5

如何模拟 System.Data.IDataReader 中的 GetValues() 方法?

这个方法改变了传递给它的对象数组,所以它不能简单地返回一个模拟值。

private void UpdateItemPropertyValuesFromReader( object item, IDataReader reader )
{
    object[] fields = new object[ reader.FieldCount ];
    reader.GetValues( fields ); //this needs to be mocked to return a fixed set of fields


    // process fields
   ...
}
4

1 回答 1

9

您需要使用带有委托的 Expect.Do() 方法。然后这个委托需要“做”一些事情来代替调用代码。因此,编写一个为您填充字段变量的委托。

private int SetupFields( object[] fields )
{
    fields[ 0 ] = 100;
    fields[ 1 ] = "Hello";
    return 2;
}

[Test]
public void TestGetValues()
{
    MockRepository mocks = new MockRepository();

    using ( mocks.Record() )
    {
        Expect
            .Call( reader.GetValues( null ) )
            .IgnoreArguments()
            .Do( new Func<object[], int>( SetupField ) )
    }    

    // verify here
}
于 2008-11-27T22:17:36.780 回答