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]])'