public void TryRemoveKeyUnitTest()
        {
            Assert.Inconclusive("TODO");

            var target = new SingleValueIndex(); // TODO: Initialize to an appropriate value
            object keyObject = null; // TODO: Initialize to an appropriate value
            bool expected = false; // TODO: Initialize to an appropriate value
            bool actual;
            actual = target.TryRemoveKey(keyObject);
            Assert.AreEqual(expected, actual);
        }