public async Task success_not_found()
        {
            PersistedGrant persistedGrant = null;

            Should.NotThrow(() =>
            {
                persistedGrant = GetAsync(_key).GetAwaiter().GetResult();
            });
            persistedGrant.ShouldBeNull();
        }