DataDictionary.Generated.SubStep.removeExpectations C# (CSharp) Method

removeExpectations() public method

Part of the list interface for Expectations This deletion function removes an element from the collection in Expectations If the object given in parameter is not found in the the collection, this function does nothing.
public removeExpectations ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void
        public void removeExpectations(IXmlBBase obj)
        {
            int idx = indexOfExpectations(obj);
              if (idx >= 0) { deleteExpectations(idx);
            NotifyControllers(null);
               }
        }

Same methods

SubStep::removeExpectations ( IXmlBBase obj, Lock aLock ) : void