예제 #1
0
        public async Task GetCommitteesNotAssignedToBranchTest()
        {
            _claims = new Claim[1] {
                new Claim(IdentityConfigs.Claims.SelectedGovAgency, "022001000000,022001000000")
            };
            _branchController = _branchController.WithIdentity(_claims);

            var result = await _branchController.GetCommitteesNotAssignedToBranch(27);

            Assert.NotNull(result);
            Assert.NotEmpty(result);
        }