hbarton2 / cscd350-f24-UnhandledExceptions

0 stars 0 forks source link

[Field/Methods] Remove Method #9

Closed coreybasden closed 2 weeks ago

coreybasden commented 3 weeks ago

As a user, I want to be able to remove a method from a class, So that they are no longer visible on the UML diagram for that class.

tharium commented 3 weeks ago

Scenario: Remove method Given I am on the method management screen of the program, And I have an existing method I want to remove from a class, When I type "remove method 'method name' from 'class name'", I should see a message stating "method 'method name' removed from class 'class name'" And the UML Diagram should update to reflect this method is no longer connected to the given class.

tharium commented 3 weeks ago

Scenario: Remove method that does not exist Given I am on the method management screen of the program, And I want to remove a method that does not exist in the given class, When I type "remove method 'method name' from 'class name'", I should see a message stating "No method 'method name' found in class 'class name'" And the UML Diagram should not change.