public void IndexableAttributeIsRemovableDynamically() { var list = new IndexableCollection <DecoratedClass>(); Assert.IsTrue(list.RemoveIndex("SomeProperty")); }
public void RemoveBogusIndex() { var list = new IndexableCollection <PocoClass>(); Assert.IsFalse(list.RemoveIndex("ThisIndexDoesNotExist")); }