public async Task Should_Create_Update_Success()
        {
            var input = new ApiResourceCreateUpdateDto()
            {
                Name   = "test",
                Scopes = new List <string> {
                    "openid", "Age", "NewIdentityResource1"
                },
                UserClaims = new List <string> {
                    "Age"
                }
            };

            (await _apiResourceAppService.CreateAsync(input)).ShouldNotBeNull();
        }
 public virtual Task <ApiResourceDto> CreateAsync(ApiResourceCreateUpdateDto input)
 {
     return(_appService.CreateAsync(input));
 }