我正在尝试混合 CallsBaseMethod 和 CallTo 并且它没有调用我设置的那个。请参阅下面的代码和我的评论。有没有办法让它工作或使用 FakeItEasy 的不同方法?
public LayoutManager(ICompanyManager companyManager)
{
this._companyManager = companyManager;
}
this.CompanyManagerFake = A.Fake<ICompanyManager>();
// using StructureMap, put this here to make the example more brief, in my code it's in a base class
ObjectFactory.Configure(registry =>
{
registry.For<ICompanyManager>().Use(this.CompanyManagerFake);
});
this._layoutManager = A.Fake<LayoutManager>();
var layouts = GetTestLayouts();
// I want to get the actual GetLayoutForUser method
A.CallTo(() => this._layoutManager.GetLayoutForUser(A<int>.Ignored)).CallsBaseMethod();
// I want to mock the data for the GetAll method (which is called in GetLayoutForUser)
A.CallTo(() => this._layoutManager.GetAll(A<string>.Ignored)).Returns(layouts.AsQueryable());
A.CallTo(() => this.CompanyManagerFake.GetAll(A<string>.Ignored)).Invokes(
call =>
{
// this doesn't get called from GetLayoutForUser, but is from the line below
var x = call.Arguments;
});
// I want to use .Returns(new List<Company>().AsQueryable()); instead of Invokes, but needed to set a breakpoint
// this hits the above Invokes as expected
var assignedCompanIds = this.CompanyManagerFake.GetAll()
.Where(c => c.UserProfiles.Any(up => up.UserId == 123)
|| c.UserProfiles1.Any(up => up.UserId == 123))
.Select(c => c.CompanyId);
// Act
var result = this._layoutManager.GetLayoutForUser(123);
// Assert
// something
注意:我也把这个问题放在了GitHub 这好像和这个问题差不多,但是我不能放在一起。所以当我打电话时
var assignedCompanyIds = this._companyManager.GetAll()
.Where(c => c.IsAssigned)
.Select(c => c.CompanyId).ToList();
我得到这个异常:{X} 方法抛出异常:System.ArgumentException:类型''的表达式不能用于类型'System.Linq.IQueryable 1[Company]' of method 'System.Linq.IQueryable
1[Company] Where[Company](System.Linq.IQueryable 1[Company], System.Linq.Expressions.Expression
1[ System.Func`2[Company,System.Boolean]])'