TASK 2

RMAG news

Boundary value analysis -: boundary values are the values which contain the lower limit and upper limit of the variable. the values within the limit will be valid and the values outside the limit will be invalid.
for example: The password should contain numbers from 1-100

A=1 , B=100

A-1,A,A+1,B-1,B,B+1

0,1,2,99,100,101

0 and 101 — invalid input

1,2,99,100 — valid input

Decision table :- A decision table is a form of documenting the decisions or actions based on certain set of conditions.
formula 2^n — n = no. of test conditions

for example: We have to sign up in amazon we have 3 conditions
1: User name, 2:user email id, 3:phone number(optional)

no of condition – 3

formula 2^3=8

Input Output
Name Email id Phone number

T T T T
T T F T
F T T F
F F T F
F F F F
T F T F
T F F F
F T F F

Use case testing :- Use case testing is a type of black box testing and is done using the use case diagram which is created by the developer, it is to identify the test cases that form a part of the entire system from start to finish.

LCSAJ technique: It stands for linear code sequence and jump technique which is a white box testing technique to identify the code coverage. it is to identify how many codes have been executed with the existing test cases. it helps to design new testcases

Please follow and like us:
Pin Share