public void DisjointedSortedSet_RetrieveScoreByValue_Simple()
        {
            var set = new DisjointedSortedSet();

            set.Add(new[]
            {
                new StackExchange.Redis.SortedSetEntry("anna", 10),
                new StackExchange.Redis.SortedSetEntry("bob", 20)
            });
            Assert.AreEqual(10, set.RetrieveScoreByValue("anna"));
            Assert.IsNull(set.RetrieveScoreByValue("nonexistant"));
        }