public void GetUserClaims()
        {
            UserAccessDTO userName = new UserAccessDTO
            {
                UserName = "******"
            };
            ResponseDTO <List <Claim> > found = uac.GetUserClaims(userName);
            List <Claim> expectedClaims       = new List <Claim>
            {
                new Claim("AmayClaimType1", "AmayClaimValue1"),
                new Claim("AmayClaimType2", "AmayClaimValue2"),
            };

            Assert.Equal(expectedClaims, found.Data);
        }