Test Case Design Technique


Q1. You are testing a form that allows users to schedule appointments with a doctor. The form has the following fields: first name, last name, email, phone number, and appointment date/time. Some more inputs:
* If any field is blank, we should display "All fields are required"
* If the email is invalid, we should display "Please enter a valid email"
* If the phone number is invalid, we should display "Please enter a valid phone number"
* If the appointment date/time is not available, it should display "Please choose another date/time"
* If all fields are correct and the appointment is available, we should schedule the appointment successfully.
Condition | Case 1 | Case 2 | Case 3 | Case 4 | Case 5 | Case 6 | Expected Result |
First name | Yes | No | No | No | No | No | All Fields are required |
Last name | No | Yes | No | No | No | No | All Fields are required |
Email is Invalid | No | Yes | No | No | No | No | Please Enter a valid Email Id |
Phone Number is invalid | No | No | Yes | No | No | No | Please enter a valid phone number |
Appointment date/time is unavailable | No | No | No | Yes | No | No | Please choose another date/time |
All fields are correct, and slot is available | No | No | No | No | No | Yes | Appointment scheduled successfully |
Q2. Suppose you are a software tester and you are assigned to test a new mobile app that has just been developed. The app has three different user roles: basic user, premium user, and admin user. You have been given the following three test scenarios to execute:
* Basic users can only access limited features of the app, while premium users can access all features. Admin users have access to advanced settings and can perform all actions.
* Users should be able to create and delete their accounts successfully. Passwords must meet the required complexity standards and users should receive a confirmation email • upon successful account creation.
* Users should be able to navigate through the app seamlessly without any crashes or performance issues. The app should also display appropriate error messages when a user attempts to perform an action they are not authorized to perform.
For each of the test scenarios, describe the steps you would take to test them and the expected result.
Scenario 1 : Access control | ||||
Scenario | Test Case Description | Test Step | Step Action | Expected Result |
Verify user is able to login with basic user role | Login as a Basic User | 1 | Login as a Basic User | Basic User should access only limited features and see an error when trying premium/admin features |
2 | Attempt to access premium features | |||
3 | Attempt to access admin settings | |||
Verify user is able to login with Premium user role | Login as a Admin User | 1 | Login as a Premium User | Premium User should access all basic and premium features but be restricted from admin settings |
2 | Attempt to access all basic and premium features | |||
3 | Attempt to access admin settings | |||
Verify user is able to login with Admin user role | Login as a Premium User | 1 | Login as an Admin User | Admin should have full access to all features |
2 | Attempt to access all features, including admin settings | |||
Scenario 2 :Account Creation | ||||
Scenario | Test Case Description | Test Step | Step Action | Expected Result |
Verify user is able to create an account | Verify successful account creation | 1 | Enter valid details and submit form | Account should be created successfully, and a confirmation email should be received |
2 | Check if confirmation email is received | |||
Verify user is able to create an account with invalid password | Verify account creation with invalid password | 1 | Enter invalid password and submit form | Account should not be created, and an error message should appear |
Verify user is able to delect there account | Verify account deletion | 1 | Log in | Account should be deleted, and login should fail |
2 | Delete the account | |||
3 | Try logging in again | |||
Scenario 3 :App Navigation, Performance, and Error Handling | ||||
Scenario | Test Case Description | Test Step | Step Action | Expected Result |
Verify user is able to handle the account smoothly | Verify smooth navigation | 1 | 1. Browse menus and features | App should navigate smoothly without lag |
Verify should able to get a good performance_ under any condition | Verify app performance under different conditions | 1 | Test app on different devices and networks | App should perform efficiently under various conditions |
2 | Monitor response times | |||
Verify user get a error massage for unauthorized actions | Verify error messages for unauthorized actions | 1 | 1. Attempt unauthorized actions (e.g., Basic user trying to access premium features) | App should display appropriate error messages |
Subscribe to my newsletter
Read articles from Neha Kamde directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
