Example #1
0
        public void Remove_Invoke_Success()
        {
            var collection = new SubBindingsCollection();
            var binding    = new Binding(null, new object(), "member");

            collection.Add(binding);

            collection.Remove(binding);
            Assert.Empty(collection);
        }