public void RemoveSelectingEventForwardsToView()
        {
            TestableObjectContainerDataSource control = new TestableObjectContainerDataSource();

            control.RemoveEventSubscriptions();
            control._view.CallOnSelecting();

            Assert.IsFalse(control._UpdatingFired);
        }
        public void RemoveInsertedEventForwardsToView()
        {
            TestableObjectContainerDataSource control = new TestableObjectContainerDataSource();

            control.RemoveEventSubscriptions();
            control._view.CallOnInserted();

            Assert.IsFalse(control._InsertedFired);
        }
        public void RemoveUpdatingEventForwardsToView()
        {
            TestableObjectContainerDataSource control = new TestableObjectContainerDataSource();

            control.RemoveEventSubscriptions();
            control._view.CallOnUpdating();

            Assert.IsFalse(control._UpdatingFired);
        }
        public void RemoveDeletedEventForwardsToView()
        {
            TestableObjectContainerDataSource control = new TestableObjectContainerDataSource();

            control.RemoveEventSubscriptions();
            control._view.CallOnDeleted();

            Assert.IsFalse(control._DeletedFired);
        }