public void CanRemoveNonContained()
        {
            // Arrange
            IInterfaceMap  target  = CreateIInterfaceMap();
            IMethodMapping mapping = CreateIMethodMapping();

            mapping.Name = "test";
            mapping.GenericArgumentTypes = Type.EmptyTypes;
            mapping.ArgumentTypes        = Type.EmptyTypes;
            bool actual;

            // Act
            actual = target.Remove(mapping);

            // Assert
            Verify.That(actual).IsFalse()
            .Now();
        }