コード例 #1
0
        public async Task UserOperation_GetUserInfoByUnauthorizedUser_ReturnsUnauthorizedAccess()
        {
            var response = await UnauthorizedApi.GetUserById(JohnId);

            response.StatusCode.Should().Be(HttpStatusCode.Unauthorized);
        }