Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The following program has been implemented for a newly proposed tax calculation formula for residents of a fictitious country. // incomeList[]: the array recording the

The following program has been implemented for a newly proposed tax calculation formula for residents of a fictitious country.

// incomeList[]: the array recording the individual income items

// childList[]: the array recording the ages of children supported by this person

// parentList[]: the array recording the ages of parents supported by this person

public double computeTax(double[] incomeList, int[] parentList, int[] childList) {

double taxAmount = 0.0;

double incomeAmount = 0.0;

// calculate the income amount

for (int i = 0; i < incomeList.length; i++) {

incomeAmount = incomeAmount + incomeList[i]; 6 }

// calculate the basic tax

if (incomeAmount <= 40000) {

taxAmount = incomeAmount * 0.02;

} else if (incomeAmount > 40000 && incomeAmount <= 80000) {

taxAmount = 800 + incomeAmount * 0.07;

} else if (incomeAmount > 80000 && incomeAmount <= 120000) {

taxAmount = 800 + 2800 + incomeAmount * 0.12;

} else if (incomeAmount > 120000) {

taxAmount = 800 + 2800 + 4800 + incomeAmount * 0.17; 15 }

// calculate the tax exemption from having children

int taxExemption = 0;

int numOfChild = childList.length;

while (numOfChild > 0) {

if (childList[numOfChild - 1] < 18) {

taxAmount = taxAmount - 4000;

taxExemption = taxExemption + 4000; 22 }

23 numOfChild--; 24 }

// calculate the tax exemption from having parents

for (int j = 0; j < parentList.length; j++) {

if (parentList[j] > 60) {

taxAmount = taxAmount - 2000;

taxExemption = taxExemption + 2000; 29 }

30 }

// the maximum tax exemption is 8000 each person

if (taxExemption <= 8000) {

if (taxAmount >= 0) {

return taxAmount;

} else { // i.e., taxAmount <0

return 0; 36 }

} else { // i.e., taxExemption > 8000

taxAmount = taxAmount + (taxExemption - 8000);

return taxAmount;

}

}

a) Design test cases to achieve the statement coverage on the function computeTax (list the statements covered by each test case using the line number of each statement). If it is not feasible, explain the reason. Use the minimum number of test cases to achieve the statement coverage.

b) For this portion, create a control flow chart diagram; identify each path with a letter, similar to figure 3.2 in the textbook. Design test cases to achieve path coverage on the function computeTax." Identify paths covered by each test case using your notation in the diagram. If path coverage is not feasible, explain the reason. Use the minimum number of test cases to achieve the path coverage.

c) Design test cases to achieve loop coverage (see below) on the function computeTax (list the loops covered by each test case). If it is not feasible, explain the reason. Try your best to use the minimum number of test cases to achieve the loop coverage. Consider a loop covered if at least in one test the loop body was executed 0 times, in a second test the body was executed exactly once, and in another test the body was executed more than once.

For each level of coverage, provide a brief explanation of your work. This should include any assumptions you have made.

Test cases should be presented in a table with each row showing the following:

Test ID #, input data, statements/paths/loops covered by the test case, expected output, actual output, pass/fail, and % coverage. You may add additional columns to display key variables such as tax exemption.

See Understanding Software Test Cases for tips on how test cases should be written: http://www.elementool.com/ebook/softwaretestcases.pdf

Code coverage should be shown by listing the statements (using line numbers) for each test case.

Your path diagram may be created with a drawing tool or NEATLY handwritten and inserted into your work.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Spatial Database Systems Design Implementation And Project Management

Authors: Albert K.W. Yeung, G. Brent Hall

1st Edition

1402053932, 978-1402053931

Students also viewed these Databases questions

Question

3. You can gain power by making others feel important.

Answered: 1 week ago