public async Task ReceivePortalList_Fetch() { list = await portal.Fetch(); Assert.IsTrue(list.FetchCalled); Assert.IsTrue(list.Single().FetchChildCalled); }
public async Task BaseAuthorization_Fetch() { var obj = await portal.Fetch(); var authRule = scope.Resolve <IAuthorizationGrantedRule>(); Assert.IsTrue(authRule.ExecuteFetchCalled); }
public async Task ReceivePortal_Fetch() { domainObject = await portal.Fetch(); Assert.IsTrue(domainObject.FetchCalled); }