Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Imagine that you are head of testing department of a software house. In your department, there are several testing staff who design test - cases

Imagine that you are head of testing department of a software house. In your department, there
are several testing staff who design test-cases for different software modules. A module holds
some n number of lines of code and each test case may cover some of the code lines of the module.
For example, let our very simple module contains 10 lines of code (i.e.
n=10) and we have k=6 number of different test cases prepared for the testing the module. Table 1 shows an example
line numbers covered by each of 6 different example test cases.As the head of the testing department, you wish to minimize the number of applied test cases per module in order to save testing time. On the other hand, the selected minimum number of testcases among k alternatives are required to cover all the lines of module under test together in order to not to risk some of the module lines not being tested. In other words, the selected
minimum number of test cases should cover all the code lines of the module collectively. For example for the above problem instance, you have to select the test cases 5 and 6 that covers all the 10 module lines together. In your solution, assume that each line of the module under test is covered by at least one test case.In order to solve the problem, you decide to develop a software tool that uses Transform &Conquer algorithm design technique. According to the approach, first you need to convert given
problem instance into an Integer Linear Programming (ILP) problem then solve the constructed ILP problem by using a back-end solver (namely IBM-Cplex Solver) on the fly. Finally, display the obtained result in a meaningful way. See Figure 1 below.Your homework submission should include the following pieces:
i. A report that explains how you transform the test case selection problem into the ILP
problem. (20 pts)
ii. Source code of your algorithm. In your code, do NOT hard-code the sample problem input
instance above but read the sample input either from screen or from a text file. (80 pts) Figure 1. A simple architectural view for your test case selection software.
image text in transcribed

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

Database Processing

Authors: David J. Auer David M. Kroenke

13th Edition

B01366W6DS, 978-0133058352

More Books

Students also viewed these Databases questions

Question

What are negative messages? (Objective 1)

Answered: 1 week ago