Question: For the following PDL, use the Basis Path Testing method, derive the basis set of the independent paths required for testing the PDL, and list

For the following PDL, use the Basis Path Testing method, derive the basis set of the independent paths required for testing the PDL, and list out various methods for finding Cyclomatic Complexity.
FUNCTION DocumentRequired; BEGIN;
VAR CeilingValue INTEGER; VAR BusinessType, Commercial, DocumentRequired TEXT; READ CeilingValue, BusinessType, Commercial; IF (CeilingValue >= 650000 AND BusinessType = 'F' AND Commercial = 'N')
DocumentRequired = 'Y';
ELSE
DocumentRequired = 'N';
RETURN DocumentRequired;
END;
For the following PDL, use the Basis Path Testing method, derive the basis set of the independent paths required for testing the PDL, and list out various methods for finding Cyclomatic Complexity. FUNCTION DocumentRequired; BEGIN; VAR CeilingValue INTEGER; VAR BusinessType, Commercial, DocumentRequired TEXT; READ CeilingValue, BusinessType, Commercial; IF (CeilingValue >= 650000 AND Business Type = 'F' AND Commercial = 'N') Document Required = 'Y: ELSE DocumentRequired = 'N'; RETURN Document Required: END
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
