public async Task ShouldAddAndRemoveItemByPredictateAsync()
        {
            await _storage.AddAsync(1, "1");

            await _storage.RemoveWhereValueAsync(e => e == "1");

            var result = await _storage.GetAllValuesAsync();

            Assert.Empty(result);
        }