Ejemplo n.º 1
0
        public async Task CanGetAllAsync()
        {
            _collection.Add(new IdentityResource());

            var result = await _repository.GetAllAsync <IdentityResource>();

            Assert.Single(result);
        }