Testing Fundamentals - Functional Testing Techniques
In a banking app, the states are
If a user fails login twice, then resets, then logs in successfully, what is the final state?
LoggedOut, LoggedIn, Locked. Transitions:LoggedOut -login-> LoggedInLoggedIn -logout-> LoggedOutLoggedIn -fail_attempt-> LockedLocked -reset-> LoggedOutIf a user fails login twice, then resets, then logs in successfully, what is the final state?
