Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 3
0
        public async Task ReceivePortal_Fetch()
        {
            domainObject = await portal.Fetch();

            Assert.IsTrue(domainObject.FetchCalled);
        }