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

            await _storage.UpdateAsync(1, "2");

            var result = await _storage.GetValueAsync(1);

            Assert.Equal("2", result);
        }