Unit Testing:
Unit testing is done by the developers in their environment during their development process.Tester's break the specific modules into numerous smaller units and test each and every functionality associated in the entire module in the Tester's environment.
Example: Testing the Log In section.
When Invalid credentials are entered in the Log In fields proper error messages must be prompted to the user.
Unit testing is done by the developers in their environment during their development process.Tester's break the specific modules into numerous smaller units and test each and every functionality associated in the entire module in the Tester's environment.
Example: Testing the Log In section.
When Invalid credentials are entered in the Log In fields proper error messages must be prompted to the user.
- Email/User name Field:
- Validate the Email/User name Field with = Null Values.
- Validate the Email/User name Field with = Valid Values.
- Validate the Email/User name Field with = Invalid Values.
- Validate the Email Filed with = Invalid Email ID syntax.
- Password Field:
- Validate the Password Field with = Null Values.
- Validate the Password Field with = Valid Values.
- Validate the Password Field with = Invalid Values.
- Validate the Password Field with = Case Sensitivity Values.
- Validate the Password Field with = Secure display of Password either (Dot's or Asterisk symbols).
- Log In Button:
- Check for the Log In button is enabled or not after entering the Log In credentials.