public async Task Delete()
        {
            await _fixture.UseDataSetAsync(locations : @"Resources/apiKeys.json");

            await _apiKeyRepository.DeleteAsync("global.1");

            bool exist = await _apiKeyRepository.ExistsByIdAsync("global.1");

            Assert.False(exist);
        }