Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions for manual testing for instruction testing #275

Merged
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,11 +555,15 @@ testers are expected to do more *exploratory* testing.
1. Other incorrect delete commands to try: `delete`, `delete x`, `...` (where x is larger than the list size)<br>
Expected: Similar to previous.

### Saving data
### Undoing the last operation
1. Undoing an execution that modifies the CampusConnect data
1. Prerequisites: Perform any operation that modifies the state (all executions except for list and find) to ensure there is an action to undo.

1. Dealing with missing/corrupted data files
1. Test case: undo
Expected: The last operation is undone, restoring the previous state. The list updates accordingly, and a status message confirms the undo action.

1. _{explain how to simulate a missing/corrupted file, and the expected behavior}_
1. Test case: undo immediately after starting the application (with no operations performed)
Expected: No undo operation is performed. An error message appears in the status message, indicating there is no action to undo. The status bar remains unchanged.
KrashKart marked this conversation as resolved.
Show resolved Hide resolved
CYX22222003 marked this conversation as resolved.
Show resolved Hide resolved

--------------------------------------------------------------------------------------------------------------------
## **Appendix: Future features**
Expand Down