public void Item_should_be_removed_on_demand()
        {
            ICache cache = new FifoCache();

            cache[0] = 0;
            Assert.That(cache[0], Is.Not.Null);

            cache.Remove(0);
            Assert.That(cache[0], Is.Null);
        }