Test Case Design Technique

Neha KamdeNeha Kamde
5 min read

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.

ConditionCase 1Case 2Case 3Case 4Case 5Case 6Expected Result
First nameYesNoNoNoNoNoAll Fields are required
Last nameNoYesNoNoNoNoAll Fields are required
Email is InvalidNoYesNoNoNoNoPlease Enter a valid Email Id
Phone Number is invalidNoNoYesNoNoNoPlease enter a valid phone number
Appointment date/time is unavailableNoNoNoYesNoNoPlease choose another date/time
All fields are correct, and slot is availableNoNoNoNoNoYesAppointment 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
ScenarioTest Case DescriptionTest StepStep ActionExpected Result
Verify user is able to login with basic user roleLogin as a Basic User1Login as a Basic UserBasic User should access only limited features and see an error when trying premium/admin features
2Attempt to access premium features
3Attempt to access admin settings
Verify user is able to login with Premium user roleLogin as a Admin User1Login as a Premium UserPremium User should access all basic and premium features but be restricted from admin settings
2Attempt to access all basic and premium features
3Attempt to access admin settings
Verify user is able to login with Admin user roleLogin as a Premium User1Login as an Admin UserAdmin should have full access to all features
2Attempt to access all features, including admin settings
Scenario 2 :Account Creation
ScenarioTest Case DescriptionTest StepStep ActionExpected Result
Verify user is able to create an accountVerify successful account creation1Enter valid details and submit formAccount should be created successfully, and a confirmation email should be received
2Check if confirmation email is received
Verify user is able to create an account with invalid passwordVerify account creation with invalid password1Enter invalid password and submit formAccount should not be created, and an error message should appear
Verify user is able to delect there accountVerify account deletion1Log inAccount should be deleted, and login should fail
2Delete the account
3Try logging in again
Scenario 3 :App Navigation, Performance, and Error Handling
ScenarioTest Case DescriptionTest StepStep ActionExpected Result
Verify user is able to handle the account smoothlyVerify smooth navigation11. Browse menus and featuresApp should navigate smoothly without lag
Verify should able to get a good performance_ under any conditionVerify app performance under different conditions1Test app on different devices and networksApp should perform efficiently under various conditions
2Monitor response times
Verify user get a error massage for unauthorized actionsVerify error messages for unauthorized actions11. Attempt unauthorized actions (e.g., Basic user trying to access premium features)App should display appropriate error messages
0
Subscribe to my newsletter

Read articles from Neha Kamde directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Neha Kamde
Neha Kamde