SlideShare une entreprise Scribd logo
1  sur  14
Télécharger pour lire hors ligne
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
DOI:10.5121/ijfcst.2016.6202 23
TEST CASE PRIORITIZATION FOR OPTIMIZING A
REGRESSION TEST
Ahlam Ansari1
, Alisha Khan2
, Anam Khan3
and Konain Mukadam4
Department of Computer Engineering, M.H. SabooSiddik,Mumbai, India
ABSTRACT
Regression testing makes sure that upgradation of software in terms of adding new features or for bug
fixing purposes should not hamper previously working functionalities. Whenever a software is upgraded or
modified, a set of test cases are run on each of its functions to assure that the change to that function is not
affecting other parts of the software that were previously running flawlessly. For achieving this, all existing
test cases need to run as well as new test cases might be required to be created. It is not feasible to re-
execute every test case for all the functions of a given software, because if there is a large number of test
cases to be run, then a lot of time and effort would be required. This problem can be addressed by
prioritizing test cases. Test case prioritization technique reorders the priority in which test cases are
implemented, in an attempt to ensure that maximum faults are uncovered early on by the high priority test
cases implemented first. In this paper we propose an optimized test case prioritization technique using Ant
Colony Optimization (ACO) to reduce the cost, effort and time taken to perform regression testing and also
uncover maximum faults. Comparison of different techniques such as Retest All, Test Case Minimization,
Test Case Prioritization, Random Test Case Selection and Test Case Prioritization using ACO is also
depicted.
KEYWORDS
Regression testing, Test case prioritization, Ant colony optimization.
1. INTRODUCTION
No matter how well a software is designed and tested before being released, it will eventually
have to be modified for either adding new features or to fix the bugs in the current version.
Regression testing is type of testing, which is performed on the improved build of the software so
as to verify that the bug fixes or the added functionalities do not hamper the originally flawless
functionalities of the software [1].
Regression testing is the process of verifying the modified software to detect whether new errors
have been introduced into previously flawless code and to provide confidence that modifications
are correct [2]. But, running all the regression test cases again for every iteration of the software
is an expensive and time consuming process. To solve the problem of this “Retest All” approach,
we have various techniques such as Test case selection, Test Case Prioritization and the Hybrid
approach.
The various regression testing techniques are depicted in Figure 1 [3].
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
24
Figure 1. Regression Testing Techniques
a) Retest All: This is simply re-execution of all the test cases in the test suite of a particular
function. It is the ideal technique, but however, can consume a lot of time.
b) Regression Test Case Selection: Instead of re-executing the entire test suite, it is logical to
select a certain part of test suite to be run. Test cases selected can be categorized as I) Reusable
Test Cases II) Obsolete Test Cases.
Reusable Test cases can be used in succeeding regression cycles.
Obsolete Test Cases can't be used in succeeding cycles.
c) Prioritization of Test Cases: In this technique we prioritize the list of test cases, enabling test
cases with higher priority, selected on the basis of some predefined criterion, to be executed
before the test cases with a lower priority, to meet the required performance goal. So test case
prioritization technique does not discard any test case hence avoiding the drawback of test case
minimization technique.
d) Hybrid Approach: This technique is a Hybrid Approach of both Regression Test Selection and
Test Case Prioritization. So as to achieve the advantages of both.
Various prioritization criteria may be applied to the regression test suite with the objective of
meeting the required criteria. Test cases can be prioritized in terms of random, optimal, total
statement coverage, failure rates, total branch coverage or total fault exposing potential of the test
cases [4]. Many techniques have been implemented for prioritizing the test cases according to one
or more chosen criteria to meet the requirement. In this paper we make use of ACO to prioritize
the given test cases. ACO is a process based on real life of ants, precisely on their food searching
process.
1.1 Concept of Regression Testing
Regression testing is performed whenever any modifications made to the software, to provide
confidence that the software behaves correctly and the modifications have not impacted the
previously flawless functions and the quality of the software. A regression test is intended to
provide a general assurance that enhancement or defect fixes in the software or its environment
do not impact the previously working functionalities of the software.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
25
Figure 2. Various Activities that are Carried Out During Regression Testing
Regression test suites are often simply the test cases that had been previously developed, and that
have been saved so that they can be used later to perform regression testing [4]. It is an important
and necessary activity as it maintains the quality of modified software systems. Many regression
testing techniques have been proposed that are Test Selection, Test Minimization and Test
Prioritization. The various regression testing techniques can be seen in Figure 2.
1.2 Activities Performed During Regression Testing
a) Test case selection: Test selection chooses the test cases that are relevant for a specific part of
the application or for the performed maintenance operation.
b) Test case minimization: Test minimization reduces the number of test cases to be executed by
removing redundant test cases, thus preserving the capability of the suite in discovering faults.
c) Test case prioritization: Test case prioritization determines the execution order of test cases
that maximizes the probability of early discovering faults [5].
Minimization of test cases may require discarding of few test cases whereas prioritization of test
cases gives an execution order of test cases such that all higher priority test cases are executed
based on the selection criteria thereby reducing the probability of degradation in software
components quality.
2. TEST CASE PRIORITIZATION
Test case prioritization involves the arrangement of test cases based on some specific criteria. The
technique emphasizes on prioritizing the test cases and enhancing the probability of meeting the
specified goals within assigned time and cost which was not effectively achievable by non
prioritized test cases.
Test case prioritization is used to achieve various objectives as follows:
a) Software developers/testers intend to increase the rate of fault detection.
b) Early detection of the faults that are more risky in testing life cycle.
c) To increase the reliability of the system [6].
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
26
2.1 Test Case Prioritization Techniques
In test case prioritization technique test cases that cover maximum faults in a particular function
of the software are selected. Test cases with minimum execution time and maximum usage are
assigned high priorities .The objective of this technique is to test the functionalities of a
component in minimum time so as to reduce efforts and cost of testing.
The nine different test case prioritization techniques are as follows [7]:
a) No prioritization: One prioritization technique that we consider is simply the application
of no technique; that is the test cases are untreated.
b) Random prioritization: Here we apply random prioritization, in which we randomly order
the tests in a test suite.
c) Optimal prioritization: We can determine, for any test suite, which test cases expose
which faults of a system, and thus we can determine an optimal ordering of test cases for
maximizing rate of fault detection.
d) Total branch coverage prioritization: We can determine, for any test case, the number of
decisions (branches) in that program that were exercised by that test case. We can
prioritize these test cases according to the total number of branches they cover simply by
sorting them in order of total branch coverage achieved.
e) Additional branch coverage prioritization: Additional branch coverage prioritization
prioritizes test case in order of coverage of branches not yet covered.
f) Total fault-exposing-potential (FEP) prioritization: prioritize in order of total probability
of exposing faults.
g) Additional fault-exposing-potential (FEP) prioritization: Prioritize test case in order of
total probability of exposing faults, adjusted to consider effects of previous tests.
h) Total statement coverage prioritization: Prioritize in order of coverage of statements.
i) Additional statement coverage prioritization: Prioritize in order of coverage of statements
not yet covered.
2.2 Algorithms for Test Case Prioritization
Several researchers have been working on developing algorithms for prioritization of test cases.
Some of which are listed below:
a) Greedy Algorithm
b) Additional Greedy Algorithm
c) Optimal Algorithm
d) Hill Climbing Algorithm
e) Genetic Algorithm
f) PORT version1.1
g) Ant Colony optimization [3].
3. PROPOSED SYSTEM
Ant colony optimization technique is used for prioritizing the test cases.
3.1 Ant colony optimization
Ants are blind and small in size and still are able to find the shortest route to their food source.
They make the use of antennas and pheromone liquid to be in touch with each other. Ant Colony
Optimization (ACO) inspired from the behaviour of live ants on a food hunt is an optimal path
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
searching technique, capable of synchronization with searching solutions for local problem by
maintaining array list to maintaining previous information gathered by each ant [8].
While on food hunt ants follow a certain path. A chemical substance called “pheromone” is left
behind by each ant following the path. The ants that follow similar path are able to trace the path
by smelling the odour of pheromone that the preceding ants left behind [9].
The optimal or shortest path discovery is done by observing teamwork and pheromone evaluation
process. The possible random paths from ant hill to the food particle are shown in Figure 3
[9].Ants take random paths and the pheromone is deposited on every path taken by t
However on their return ants will take the path which has more residual pheromone.
Figure 3. Random path followed by ants
Pheromone evaporation rate depends upon the path length. The longer the path the more will be
pheromone evaporation. Hence the longer path has less residual pheromone
Figure 4. Shorter path followed by ants
As seen in Figure 4 [8], remaining succeeding ants will take a shorter path which has more
residual pheromone left behind.
3.2 Working of Proposed System
During software testing, testers often encounter time and budget constraints which make it
difficult to rerun all test cases. To
the specified goals within stipulated time and cost.
list of test cases to make regression testing efficient .To achieve this
the form of matrices and sorted by taking several factors into consideration.
the test will be optimized by reducing the time required to perform the test, reducing the cost
required to conduct the test, increasing the productivity of the tester and the software and
uncovering maximum number of faults.
The basic processing of Test Case Prioriti
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
searching technique, capable of synchronization with searching solutions for local problem by
maintaining array list to maintaining previous information gathered by each ant [8].
w a certain path. A chemical substance called “pheromone” is left
behind by each ant following the path. The ants that follow similar path are able to trace the path
by smelling the odour of pheromone that the preceding ants left behind [9].
or shortest path discovery is done by observing teamwork and pheromone evaluation
process. The possible random paths from ant hill to the food particle are shown in Figure 3
[9].Ants take random paths and the pheromone is deposited on every path taken by the ants
However on their return ants will take the path which has more residual pheromone.
Figure 3. Random path followed by ants
Pheromone evaporation rate depends upon the path length. The longer the path the more will be
Hence the longer path has less residual pheromone.
Figure 4. Shorter path followed by ants
As seen in Figure 4 [8], remaining succeeding ants will take a shorter path which has more
Proposed System
During software testing, testers often encounter time and budget constraints which make it
cases. To avoid this situation, we prioritize the given test cases to meet
the specified goals within stipulated time and cost. The main focus of this paper is to optimize the
list of test cases to make regression testing efficient .To achieve this objective,inputs are taken in
the form of matrices and sorted by taking several factors into consideration. Thus the efficiency of
be optimized by reducing the time required to perform the test, reducing the cost
required to conduct the test, increasing the productivity of the tester and the software and
mber of faults.
The basic processing of Test Case Prioritization can be seen in figure 5.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
27
searching technique, capable of synchronization with searching solutions for local problem by
w a certain path. A chemical substance called “pheromone” is left
behind by each ant following the path. The ants that follow similar path are able to trace the path
or shortest path discovery is done by observing teamwork and pheromone evaluation
process. The possible random paths from ant hill to the food particle are shown in Figure 3
he ants.
Pheromone evaporation rate depends upon the path length. The longer the path the more will be
As seen in Figure 4 [8], remaining succeeding ants will take a shorter path which has more
During software testing, testers often encounter time and budget constraints which make it
avoid this situation, we prioritize the given test cases to meet
focus of this paper is to optimize the
inputs are taken in
Thus the efficiency of
be optimized by reducing the time required to perform the test, reducing the cost
required to conduct the test, increasing the productivity of the tester and the software and
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
28
Figure 5. Basic processing of Test case prioritization using ACO
Figure 5 shows the input requirements and the output produced using the proposed technique.
The input to the system consists of the following matrices
a) Fault test case matrix: The no. of faults uncovered by a test case for each requirement of a
project.
b) Execution time test case matrix: The time taken by each test case to complete its execution.
c) Usage matrix: The no. of times a test case has been used to uncover faults from each
requirement.
d) Pheromone matrix: The pheromone values associated with each test case.
The proposed technique uses the above matrices as inputs, applies the algorithm based on fault
coverage and produces a pool of prioritized test cases. Prioritization is done so that all faults are
detected and cost of execution is minimum.
Output from the system will consist of the following:
a) Updated pheromone matrix.
b) Best path of test case with execution time.
c) Prioritized test cases.
3.3 Proposed Algorithm
The basic steps of the proposed technique applied to test case prioritization are shown in the form
of flow chart in Figure.6.A pool of test cases along with their fault covered in each requirement,
execution time, probability of usage and pheromone value is taken as input.
Initially a test case is chosen that covers maximum faults. Since the aim is to uncover all faults,
thus it is checked if all faults are covered by it or not. If all faults are not covered, then choose the
next test case thatcovers the remaining faults and repeat this until all faults have been covered.
Once all faults are covered, calculate the total number of faults covered by each test case which is
stored in total fault test case matrix. This procedure will lead to many combinations of test case
called paths that cover all faults
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
29
Figure 6: Flowchart for proposed system
Many such paths are explored while iterating and the best path from all paths explored is selected.
The pheromone value is updated on the best path selected. The selection of best path is based on
minimum execution time, maximum probability of usage and highest pheromone value.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
30
4. RESULT
The results are divided into two sections viz, output section and comparative analysis. In the
output section inputs and outputs screenshots are displayed which are obtained after application
ofthe proposed technique.A comparative analysis is done in second section of results in which
various techniques are compared based on different factors such as their execution time, risk, fault
detection, representative set, cost etc.
4.1 Output
The output of the system will be generated by taking all the input matrices and prioritizing them
based on several criterion. Five test cases along with their faults uncovered, execution time, usage
and its corresponding pheromone value is taken as input. The contents of various input files are
shown below.
Table 1 shows the Fault test case matrix. The faults that a certain test case uncovers are marked as
‘ ’.
Table 1. Fault Test Case matrix
From Table 1 it can be easily concluded that maximum faults are covered by TC 03 and TC 01
covers the faults that are left to be covered.
A test case’s script length determines its execution time. For each Test case, its execution time is
stored in the Execution time test case matrix.
Table 2 displays the Execution time test case matrix.
Table 2. Execution Time test case matrix
Test Case Execution Time
TC 01 7
TC 02 5
TC 03 4
TC 04 4
TC 05 5
The number of times a specific test case is used is displayed in the usage matrix shown in Table 3
below.
Test Case Fault 1 Fault 2 Fault 3 Fault 4 Fault 5 Fault 6
TC 01
TC 02
TC 03
TC 04
TC 05
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
31
Table 3. Usage matrix
Test Case Usage
TC 01 3
TC 02 2
TC 03 4
TC 04 2
TC 05 3
Table 3 concludes that maximum times used test cases are TC 03, TC 05 and TC 01.
Test cases and their respective pheromone values are displayed in the Pheromone matrix given
below.
Table 4 represents the Pheromone matrix.
Table 4. Pheromone matrix
Test Case Pheromone Value
TC 01 0.42
TC 02 0.4
TC 03 1
TC 04 0.5
TC 05 0.6
Various combinations of test cases called paths are generated and the best path is selected based
on which the updation of pheromone values is done. The best path or optimal path is selected by
considering several factors such as pheromone value of a test case, probability of its usage and its
average execution time.
The output screens are shown below:
1) Registration of Test Case Prioritization Application
Any user must first register in order to use the system. The registration fields are simply the
personal details of the user.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
32
Figure 7. Registration Screen
2) Login of Test Case Prioritization Application
A registered user can login to the system and upload various files related to system that needs to
be tested.
Figure 8. Login Screen
3) Input Data of Test Case Prioritization Application
Input data is taken in the form of various files i.e. Fault test case matrix, Execution time test case
matrix, Usage matrix and Pheromone matrix.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
33
Figure 9. Data acceptance screen
Figure 10. Uploading files screen
4) Output of Test Case Prioritization Application
The output is divided into two parts. The first part shows a table that contains the list of
prioritized test cases. The second part of output shows comparative analysis between non
prioritized test cases and prioritized test cases on account of factors like Time taken for testing,
Size of test cases, Cost of testing, Effort required and the APFD values associated with each test
case.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
34
Figure 11. Prioritized test case screen
4.2 Comparative Analysis
Table 5 shows comparative analysis between different regression testing techniques based on
factors like Representive set, Execution time, Risk, Cost and Fault Detection.
Table 5. Fault Test Case matrix
Representative
Set
Execution
Time
Risk Cost
Fault
Detection
Retest All Approach Strong RS Slow
No
(Yet risk
areas are
taken care
of)
High High
Test Case
Minimization
Strong RS
(If based on
specifications)
Fast No Low
High
(If based on
specifications)
Test Case
Prioritization
Weak RS Fast
Yes
(If based
on risk
exposure)
Low Lowest
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
35
Random Test Case
Selection
Weak RS Fast No Low Medium/Low
Test Case
Prioritization using
ACO
Strong RS Fast Yes Low High
Table 6 shows the analysis of existing system based on time, cost, size, effort and APFD of
untreated test case.
Table 6. Analysis of existing application
Sr.No. Principles Poor Average Good Very
Good
Excellent
i) Time *
ii) Cost *
iii) Size *
iv) Effort *
v) APFD *
Table 7 shows the analysis of proposed system based on time, cost, size, effort and APFD of
prioritized test case
Table 7.Analysis of proposed system
Sr.No. Principles Poor Average Good Very
Good
Excellent
i) Time *
ii) Cost *
iii) Size *
iv) Effort *
v) APFD *
5. CONCLUSION
The proposed technique will optimize test cases for specific components of a software by
automatically generating prioritized list of test cases to increase the efficiency of regression
testing. Ant colony optimization (ACO) technique is used for prioritization and optimization of
test cases. The objective of uncovering maximum faults in the functions of a software will be
achieved by prioritization of test cases thereby minimizing effort, time and cost of
testing.Application of this algorithm will lead to results that are optimal and reduce testers’ effort
and time complexity.
6. FUTURE SCOPE
Currently our system only deals with creating an optimized list of test cases from an already
available pool of test cases.
International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016
36
a) Furthermore, the system can be extended to automatically perform the regression test
after creating a list of prioritized test cases. So as to partially or to some extent completely
eliminate the need of human intervention in the testing process.
b) The accuracy of the system can be increased, if we could somehow estimate that what test
cases would prove to be more important in the future, then their priorities could be
pushed up. This can also be called as an ideal or the most optimal scenario for testing. But
practically, as of now, it is impossible to achieve it, as it is not possible to estimate, in
advance, that which test case might prove to be most important in the future.
c) Also the system can be extended to smartly create or add its own test cases to the pool of
test cases, if required.
ACKNOWLEDGEMENT
Our thanks to M.H. Saboo Siddik College of Engineering, Department of Computer Engineering,
for giving us the initiative to do constructive work. We also thank anonymous reviewers for their
constructive suggestions.

Contenu connexe

Tendances (13)

Chapter 6 - Transitioning Manual Testing to an Automation Environment
Chapter 6 - Transitioning Manual Testing to an Automation EnvironmentChapter 6 - Transitioning Manual Testing to an Automation Environment
Chapter 6 - Transitioning Manual Testing to an Automation Environment
 
QUALITY METRICS OF TEST SUITES IN TESTDRIVEN DESIGNED APPLICATIONS
QUALITY METRICS OF TEST SUITES IN TESTDRIVEN DESIGNED APPLICATIONSQUALITY METRICS OF TEST SUITES IN TESTDRIVEN DESIGNED APPLICATIONS
QUALITY METRICS OF TEST SUITES IN TESTDRIVEN DESIGNED APPLICATIONS
 
Software testing
Software testingSoftware testing
Software testing
 
Chapter 2 - Test Management
Chapter 2 - Test ManagementChapter 2 - Test Management
Chapter 2 - Test Management
 
12 sdd lesson testing and evaluating
12 sdd lesson testing and evaluating12 sdd lesson testing and evaluating
12 sdd lesson testing and evaluating
 
Chapter 3 - Test Techniques
Chapter 3 - Test TechniquesChapter 3 - Test Techniques
Chapter 3 - Test Techniques
 
Testing fundamentals
Testing fundamentalsTesting fundamentals
Testing fundamentals
 
Principles and Goals of Software Testing
Principles and Goals of Software Testing Principles and Goals of Software Testing
Principles and Goals of Software Testing
 
Testing Experience Magazine Vol.14 June 2011
Testing Experience Magazine Vol.14 June 2011Testing Experience Magazine Vol.14 June 2011
Testing Experience Magazine Vol.14 June 2011
 
Software Testing and Quality Assurance Assignment 3
Software Testing and Quality Assurance Assignment 3Software Testing and Quality Assurance Assignment 3
Software Testing and Quality Assurance Assignment 3
 
A COMPOSITION ON SOFTWARE TESTING
A COMPOSITION ON SOFTWARE TESTINGA COMPOSITION ON SOFTWARE TESTING
A COMPOSITION ON SOFTWARE TESTING
 
Unit 1 part 2
Unit 1 part 2Unit 1 part 2
Unit 1 part 2
 
Fundamentals of Testing 2
Fundamentals of Testing 2Fundamentals of Testing 2
Fundamentals of Testing 2
 

Similaire à TEST CASE PRIORITIZATION FOR OPTIMIZING A REGRESSION TEST

A Productive Method for Improving Test Effectiveness
A Productive Method for Improving Test EffectivenessA Productive Method for Improving Test Effectiveness
A Productive Method for Improving Test EffectivenessShradha Singh
 
Configuration Navigation Analysis Model for Regression Test Case Prioritization
Configuration Navigation Analysis Model for Regression Test Case PrioritizationConfiguration Navigation Analysis Model for Regression Test Case Prioritization
Configuration Navigation Analysis Model for Regression Test Case Prioritizationijsrd.com
 
A NOVEL APPROACH FOR TEST CASEPRIORITIZATION
A NOVEL APPROACH FOR TEST CASEPRIORITIZATIONA NOVEL APPROACH FOR TEST CASEPRIORITIZATION
A NOVEL APPROACH FOR TEST CASEPRIORITIZATIONIJCSEA Journal
 
Regression Optimizer
Regression OptimizerRegression Optimizer
Regression OptimizerShradha Singh
 
Object Oriented Testing
Object Oriented TestingObject Oriented Testing
Object Oriented TestingAMITJain879
 
Effectiveness of test case
Effectiveness of test caseEffectiveness of test case
Effectiveness of test caseijseajournal
 
A Complexity Based Regression Test Selection Strategy
A Complexity Based Regression Test Selection StrategyA Complexity Based Regression Test Selection Strategy
A Complexity Based Regression Test Selection StrategyCSEIJJournal
 
An Adaptive Hybrid Technique approach of Test Case Prioritization
An Adaptive Hybrid Technique approach of Test Case PrioritizationAn Adaptive Hybrid Technique approach of Test Case Prioritization
An Adaptive Hybrid Technique approach of Test Case PrioritizationINFOGAIN PUBLICATION
 
Thetheoryofsoftwaretesting
ThetheoryofsoftwaretestingThetheoryofsoftwaretesting
ThetheoryofsoftwaretestingPiyushMehta57
 
Bab ii testing throughout the software life cycle
Bab ii testing throughout the software life cycleBab ii testing throughout the software life cycle
Bab ii testing throughout the software life cycleSyakir Arsalan
 
EXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODEL
EXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODELEXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODEL
EXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODELijaia
 
ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1Yogindernath Gupta
 
Software testing strategy
Software testing strategySoftware testing strategy
Software testing strategyijseajournal
 
Ôn tập kiến thức ISTQB
Ôn tập kiến thức ISTQBÔn tập kiến thức ISTQB
Ôn tập kiến thức ISTQBJenny Nguyen
 
Question ISTQB foundation 3
Question ISTQB foundation 3Question ISTQB foundation 3
Question ISTQB foundation 3Jenny Nguyen
 

Similaire à TEST CASE PRIORITIZATION FOR OPTIMIZING A REGRESSION TEST (20)

A Productive Method for Improving Test Effectiveness
A Productive Method for Improving Test EffectivenessA Productive Method for Improving Test Effectiveness
A Productive Method for Improving Test Effectiveness
 
Configuration Navigation Analysis Model for Regression Test Case Prioritization
Configuration Navigation Analysis Model for Regression Test Case PrioritizationConfiguration Navigation Analysis Model for Regression Test Case Prioritization
Configuration Navigation Analysis Model for Regression Test Case Prioritization
 
A NOVEL APPROACH FOR TEST CASEPRIORITIZATION
A NOVEL APPROACH FOR TEST CASEPRIORITIZATIONA NOVEL APPROACH FOR TEST CASEPRIORITIZATION
A NOVEL APPROACH FOR TEST CASEPRIORITIZATION
 
Regression Optimizer
Regression OptimizerRegression Optimizer
Regression Optimizer
 
software testing
software testingsoftware testing
software testing
 
Object Oriented Testing
Object Oriented TestingObject Oriented Testing
Object Oriented Testing
 
Ijsea04031006
Ijsea04031006Ijsea04031006
Ijsea04031006
 
Effectiveness of test case
Effectiveness of test caseEffectiveness of test case
Effectiveness of test case
 
Software engg unit 4
Software engg unit 4 Software engg unit 4
Software engg unit 4
 
A Complexity Based Regression Test Selection Strategy
A Complexity Based Regression Test Selection StrategyA Complexity Based Regression Test Selection Strategy
A Complexity Based Regression Test Selection Strategy
 
An Adaptive Hybrid Technique approach of Test Case Prioritization
An Adaptive Hybrid Technique approach of Test Case PrioritizationAn Adaptive Hybrid Technique approach of Test Case Prioritization
An Adaptive Hybrid Technique approach of Test Case Prioritization
 
Thetheoryofsoftwaretesting
ThetheoryofsoftwaretestingThetheoryofsoftwaretesting
Thetheoryofsoftwaretesting
 
Bab ii testing throughout the software life cycle
Bab ii testing throughout the software life cycleBab ii testing throughout the software life cycle
Bab ii testing throughout the software life cycle
 
Software Testing
Software TestingSoftware Testing
Software Testing
 
EXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODEL
EXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODELEXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODEL
EXTRACTING THE MINIMIZED TEST SUITE FOR REVISED SIMULINK/STATEFLOW MODEL
 
ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1ISTQB / ISEB Foundation Exam Practice -1
ISTQB / ISEB Foundation Exam Practice -1
 
Software testing strategy
Software testing strategySoftware testing strategy
Software testing strategy
 
Software testing
Software testingSoftware testing
Software testing
 
Ôn tập kiến thức ISTQB
Ôn tập kiến thức ISTQBÔn tập kiến thức ISTQB
Ôn tập kiến thức ISTQB
 
Question ISTQB foundation 3
Question ISTQB foundation 3Question ISTQB foundation 3
Question ISTQB foundation 3
 

Plus de ijfcstjournal

SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...ijfcstjournal
 
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...ijfcstjournal
 
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...ijfcstjournal
 
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...ijfcstjournal
 
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGAN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGijfcstjournal
 
EAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITYEAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITYijfcstjournal
 
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHSEDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHSijfcstjournal
 
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEMCOMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEMijfcstjournal
 
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMSPSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMSijfcstjournal
 
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...ijfcstjournal
 
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTINGA MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTINGijfcstjournal
 
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...ijfcstjournal
 
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCHA NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCHijfcstjournal
 
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKSAGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKSijfcstjournal
 
International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)ijfcstjournal
 
AN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMESAN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMESijfcstjournal
 
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...ijfcstjournal
 
A STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMS
A STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMSA STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMS
A STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMSijfcstjournal
 
A LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERING
A LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERINGA LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERING
A LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERINGijfcstjournal
 
BIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMS
BIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMSBIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMS
BIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMSijfcstjournal
 

Plus de ijfcstjournal (20)

SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
 
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
 
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
 
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
 
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGAN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
 
EAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITYEAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITY
 
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHSEDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
 
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEMCOMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
 
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMSPSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
 
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
 
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTINGA MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
 
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
 
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCHA NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
 
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKSAGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
 
International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)
 
AN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMESAN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMES
 
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
 
A STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMS
A STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMSA STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMS
A STATISTICAL COMPARATIVE STUDY OF SOME SORTING ALGORITHMS
 
A LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERING
A LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERINGA LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERING
A LOCATION-BASED MOVIE RECOMMENDER SYSTEM USING COLLABORATIVE FILTERING
 
BIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMS
BIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMSBIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMS
BIN PACKING PROBLEM: TWO APPROXIMATION ALGORITHMS
 

Dernier

ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.pptROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.pptJohnWilliam111370
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Erbil Polytechnic University
 
Javier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptxJavier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptxJavier Fernández Muñoz
 
Module-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdfModule-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdfManish Kumar
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESCME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESkarthi keyan
 
70 POWER PLANT IAE V2500 technical training
70 POWER PLANT IAE V2500 technical training70 POWER PLANT IAE V2500 technical training
70 POWER PLANT IAE V2500 technical trainingGladiatorsKasper
 
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithmComputer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithmDeepika Walanjkar
 
DEVICE DRIVERS AND INTERRUPTS SERVICE MECHANISM.pdf
DEVICE DRIVERS AND INTERRUPTS  SERVICE MECHANISM.pdfDEVICE DRIVERS AND INTERRUPTS  SERVICE MECHANISM.pdf
DEVICE DRIVERS AND INTERRUPTS SERVICE MECHANISM.pdfAkritiPradhan2
 
Katarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School CourseKatarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School Coursebim.edu.pl
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.elesangwon
 
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...Sumanth A
 
11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdfHafizMudaserAhmad
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating SystemRashmi Bhat
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONjhunlian
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating SystemRashmi Bhat
 
Artificial Intelligence in Power System overview
Artificial Intelligence in Power System overviewArtificial Intelligence in Power System overview
Artificial Intelligence in Power System overviewsandhya757531
 
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptxTriangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptxRomil Mishra
 
multiple access in wireless communication
multiple access in wireless communicationmultiple access in wireless communication
multiple access in wireless communicationpanditadesh123
 
CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfBalamuruganV28
 

Dernier (20)

ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.pptROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
ROBOETHICS-CCS345 ETHICS AND ARTIFICIAL INTELLIGENCE.ppt
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
 
Javier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptxJavier_Fernandez_CARS_workshop_presentation.pptx
Javier_Fernandez_CARS_workshop_presentation.pptx
 
Module-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdfModule-1-(Building Acoustics) Noise Control (Unit-3). pdf
Module-1-(Building Acoustics) Noise Control (Unit-3). pdf
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTESCME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
CME 397 - SURFACE ENGINEERING - UNIT 1 FULL NOTES
 
70 POWER PLANT IAE V2500 technical training
70 POWER PLANT IAE V2500 technical training70 POWER PLANT IAE V2500 technical training
70 POWER PLANT IAE V2500 technical training
 
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithmComputer Graphics Introduction, Open GL, Line and Circle drawing algorithm
Computer Graphics Introduction, Open GL, Line and Circle drawing algorithm
 
DEVICE DRIVERS AND INTERRUPTS SERVICE MECHANISM.pdf
DEVICE DRIVERS AND INTERRUPTS  SERVICE MECHANISM.pdfDEVICE DRIVERS AND INTERRUPTS  SERVICE MECHANISM.pdf
DEVICE DRIVERS AND INTERRUPTS SERVICE MECHANISM.pdf
 
Katarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School CourseKatarzyna Lipka-Sidor - BIM School Course
Katarzyna Lipka-Sidor - BIM School Course
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
 
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
Robotics-Asimov's Laws, Mechanical Subsystems, Robot Kinematics, Robot Dynami...
 
11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating System
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating System
 
Artificial Intelligence in Power System overview
Artificial Intelligence in Power System overviewArtificial Intelligence in Power System overview
Artificial Intelligence in Power System overview
 
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptxTriangulation survey (Basic Mine Surveying)_MI10412MI.pptx
Triangulation survey (Basic Mine Surveying)_MI10412MI.pptx
 
multiple access in wireless communication
multiple access in wireless communicationmultiple access in wireless communication
multiple access in wireless communication
 
CS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdfCS 3251 Programming in c all unit notes pdf
CS 3251 Programming in c all unit notes pdf
 

TEST CASE PRIORITIZATION FOR OPTIMIZING A REGRESSION TEST

  • 1. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 DOI:10.5121/ijfcst.2016.6202 23 TEST CASE PRIORITIZATION FOR OPTIMIZING A REGRESSION TEST Ahlam Ansari1 , Alisha Khan2 , Anam Khan3 and Konain Mukadam4 Department of Computer Engineering, M.H. SabooSiddik,Mumbai, India ABSTRACT Regression testing makes sure that upgradation of software in terms of adding new features or for bug fixing purposes should not hamper previously working functionalities. Whenever a software is upgraded or modified, a set of test cases are run on each of its functions to assure that the change to that function is not affecting other parts of the software that were previously running flawlessly. For achieving this, all existing test cases need to run as well as new test cases might be required to be created. It is not feasible to re- execute every test case for all the functions of a given software, because if there is a large number of test cases to be run, then a lot of time and effort would be required. This problem can be addressed by prioritizing test cases. Test case prioritization technique reorders the priority in which test cases are implemented, in an attempt to ensure that maximum faults are uncovered early on by the high priority test cases implemented first. In this paper we propose an optimized test case prioritization technique using Ant Colony Optimization (ACO) to reduce the cost, effort and time taken to perform regression testing and also uncover maximum faults. Comparison of different techniques such as Retest All, Test Case Minimization, Test Case Prioritization, Random Test Case Selection and Test Case Prioritization using ACO is also depicted. KEYWORDS Regression testing, Test case prioritization, Ant colony optimization. 1. INTRODUCTION No matter how well a software is designed and tested before being released, it will eventually have to be modified for either adding new features or to fix the bugs in the current version. Regression testing is type of testing, which is performed on the improved build of the software so as to verify that the bug fixes or the added functionalities do not hamper the originally flawless functionalities of the software [1]. Regression testing is the process of verifying the modified software to detect whether new errors have been introduced into previously flawless code and to provide confidence that modifications are correct [2]. But, running all the regression test cases again for every iteration of the software is an expensive and time consuming process. To solve the problem of this “Retest All” approach, we have various techniques such as Test case selection, Test Case Prioritization and the Hybrid approach. The various regression testing techniques are depicted in Figure 1 [3].
  • 2. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 24 Figure 1. Regression Testing Techniques a) Retest All: This is simply re-execution of all the test cases in the test suite of a particular function. It is the ideal technique, but however, can consume a lot of time. b) Regression Test Case Selection: Instead of re-executing the entire test suite, it is logical to select a certain part of test suite to be run. Test cases selected can be categorized as I) Reusable Test Cases II) Obsolete Test Cases. Reusable Test cases can be used in succeeding regression cycles. Obsolete Test Cases can't be used in succeeding cycles. c) Prioritization of Test Cases: In this technique we prioritize the list of test cases, enabling test cases with higher priority, selected on the basis of some predefined criterion, to be executed before the test cases with a lower priority, to meet the required performance goal. So test case prioritization technique does not discard any test case hence avoiding the drawback of test case minimization technique. d) Hybrid Approach: This technique is a Hybrid Approach of both Regression Test Selection and Test Case Prioritization. So as to achieve the advantages of both. Various prioritization criteria may be applied to the regression test suite with the objective of meeting the required criteria. Test cases can be prioritized in terms of random, optimal, total statement coverage, failure rates, total branch coverage or total fault exposing potential of the test cases [4]. Many techniques have been implemented for prioritizing the test cases according to one or more chosen criteria to meet the requirement. In this paper we make use of ACO to prioritize the given test cases. ACO is a process based on real life of ants, precisely on their food searching process. 1.1 Concept of Regression Testing Regression testing is performed whenever any modifications made to the software, to provide confidence that the software behaves correctly and the modifications have not impacted the previously flawless functions and the quality of the software. A regression test is intended to provide a general assurance that enhancement or defect fixes in the software or its environment do not impact the previously working functionalities of the software.
  • 3. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 25 Figure 2. Various Activities that are Carried Out During Regression Testing Regression test suites are often simply the test cases that had been previously developed, and that have been saved so that they can be used later to perform regression testing [4]. It is an important and necessary activity as it maintains the quality of modified software systems. Many regression testing techniques have been proposed that are Test Selection, Test Minimization and Test Prioritization. The various regression testing techniques can be seen in Figure 2. 1.2 Activities Performed During Regression Testing a) Test case selection: Test selection chooses the test cases that are relevant for a specific part of the application or for the performed maintenance operation. b) Test case minimization: Test minimization reduces the number of test cases to be executed by removing redundant test cases, thus preserving the capability of the suite in discovering faults. c) Test case prioritization: Test case prioritization determines the execution order of test cases that maximizes the probability of early discovering faults [5]. Minimization of test cases may require discarding of few test cases whereas prioritization of test cases gives an execution order of test cases such that all higher priority test cases are executed based on the selection criteria thereby reducing the probability of degradation in software components quality. 2. TEST CASE PRIORITIZATION Test case prioritization involves the arrangement of test cases based on some specific criteria. The technique emphasizes on prioritizing the test cases and enhancing the probability of meeting the specified goals within assigned time and cost which was not effectively achievable by non prioritized test cases. Test case prioritization is used to achieve various objectives as follows: a) Software developers/testers intend to increase the rate of fault detection. b) Early detection of the faults that are more risky in testing life cycle. c) To increase the reliability of the system [6].
  • 4. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 26 2.1 Test Case Prioritization Techniques In test case prioritization technique test cases that cover maximum faults in a particular function of the software are selected. Test cases with minimum execution time and maximum usage are assigned high priorities .The objective of this technique is to test the functionalities of a component in minimum time so as to reduce efforts and cost of testing. The nine different test case prioritization techniques are as follows [7]: a) No prioritization: One prioritization technique that we consider is simply the application of no technique; that is the test cases are untreated. b) Random prioritization: Here we apply random prioritization, in which we randomly order the tests in a test suite. c) Optimal prioritization: We can determine, for any test suite, which test cases expose which faults of a system, and thus we can determine an optimal ordering of test cases for maximizing rate of fault detection. d) Total branch coverage prioritization: We can determine, for any test case, the number of decisions (branches) in that program that were exercised by that test case. We can prioritize these test cases according to the total number of branches they cover simply by sorting them in order of total branch coverage achieved. e) Additional branch coverage prioritization: Additional branch coverage prioritization prioritizes test case in order of coverage of branches not yet covered. f) Total fault-exposing-potential (FEP) prioritization: prioritize in order of total probability of exposing faults. g) Additional fault-exposing-potential (FEP) prioritization: Prioritize test case in order of total probability of exposing faults, adjusted to consider effects of previous tests. h) Total statement coverage prioritization: Prioritize in order of coverage of statements. i) Additional statement coverage prioritization: Prioritize in order of coverage of statements not yet covered. 2.2 Algorithms for Test Case Prioritization Several researchers have been working on developing algorithms for prioritization of test cases. Some of which are listed below: a) Greedy Algorithm b) Additional Greedy Algorithm c) Optimal Algorithm d) Hill Climbing Algorithm e) Genetic Algorithm f) PORT version1.1 g) Ant Colony optimization [3]. 3. PROPOSED SYSTEM Ant colony optimization technique is used for prioritizing the test cases. 3.1 Ant colony optimization Ants are blind and small in size and still are able to find the shortest route to their food source. They make the use of antennas and pheromone liquid to be in touch with each other. Ant Colony Optimization (ACO) inspired from the behaviour of live ants on a food hunt is an optimal path
  • 5. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 searching technique, capable of synchronization with searching solutions for local problem by maintaining array list to maintaining previous information gathered by each ant [8]. While on food hunt ants follow a certain path. A chemical substance called “pheromone” is left behind by each ant following the path. The ants that follow similar path are able to trace the path by smelling the odour of pheromone that the preceding ants left behind [9]. The optimal or shortest path discovery is done by observing teamwork and pheromone evaluation process. The possible random paths from ant hill to the food particle are shown in Figure 3 [9].Ants take random paths and the pheromone is deposited on every path taken by t However on their return ants will take the path which has more residual pheromone. Figure 3. Random path followed by ants Pheromone evaporation rate depends upon the path length. The longer the path the more will be pheromone evaporation. Hence the longer path has less residual pheromone Figure 4. Shorter path followed by ants As seen in Figure 4 [8], remaining succeeding ants will take a shorter path which has more residual pheromone left behind. 3.2 Working of Proposed System During software testing, testers often encounter time and budget constraints which make it difficult to rerun all test cases. To the specified goals within stipulated time and cost. list of test cases to make regression testing efficient .To achieve this the form of matrices and sorted by taking several factors into consideration. the test will be optimized by reducing the time required to perform the test, reducing the cost required to conduct the test, increasing the productivity of the tester and the software and uncovering maximum number of faults. The basic processing of Test Case Prioriti International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 searching technique, capable of synchronization with searching solutions for local problem by maintaining array list to maintaining previous information gathered by each ant [8]. w a certain path. A chemical substance called “pheromone” is left behind by each ant following the path. The ants that follow similar path are able to trace the path by smelling the odour of pheromone that the preceding ants left behind [9]. or shortest path discovery is done by observing teamwork and pheromone evaluation process. The possible random paths from ant hill to the food particle are shown in Figure 3 [9].Ants take random paths and the pheromone is deposited on every path taken by the ants However on their return ants will take the path which has more residual pheromone. Figure 3. Random path followed by ants Pheromone evaporation rate depends upon the path length. The longer the path the more will be Hence the longer path has less residual pheromone. Figure 4. Shorter path followed by ants As seen in Figure 4 [8], remaining succeeding ants will take a shorter path which has more Proposed System During software testing, testers often encounter time and budget constraints which make it cases. To avoid this situation, we prioritize the given test cases to meet the specified goals within stipulated time and cost. The main focus of this paper is to optimize the list of test cases to make regression testing efficient .To achieve this objective,inputs are taken in the form of matrices and sorted by taking several factors into consideration. Thus the efficiency of be optimized by reducing the time required to perform the test, reducing the cost required to conduct the test, increasing the productivity of the tester and the software and mber of faults. The basic processing of Test Case Prioritization can be seen in figure 5. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 27 searching technique, capable of synchronization with searching solutions for local problem by w a certain path. A chemical substance called “pheromone” is left behind by each ant following the path. The ants that follow similar path are able to trace the path or shortest path discovery is done by observing teamwork and pheromone evaluation process. The possible random paths from ant hill to the food particle are shown in Figure 3 he ants. Pheromone evaporation rate depends upon the path length. The longer the path the more will be As seen in Figure 4 [8], remaining succeeding ants will take a shorter path which has more During software testing, testers often encounter time and budget constraints which make it avoid this situation, we prioritize the given test cases to meet focus of this paper is to optimize the inputs are taken in Thus the efficiency of be optimized by reducing the time required to perform the test, reducing the cost required to conduct the test, increasing the productivity of the tester and the software and
  • 6. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 28 Figure 5. Basic processing of Test case prioritization using ACO Figure 5 shows the input requirements and the output produced using the proposed technique. The input to the system consists of the following matrices a) Fault test case matrix: The no. of faults uncovered by a test case for each requirement of a project. b) Execution time test case matrix: The time taken by each test case to complete its execution. c) Usage matrix: The no. of times a test case has been used to uncover faults from each requirement. d) Pheromone matrix: The pheromone values associated with each test case. The proposed technique uses the above matrices as inputs, applies the algorithm based on fault coverage and produces a pool of prioritized test cases. Prioritization is done so that all faults are detected and cost of execution is minimum. Output from the system will consist of the following: a) Updated pheromone matrix. b) Best path of test case with execution time. c) Prioritized test cases. 3.3 Proposed Algorithm The basic steps of the proposed technique applied to test case prioritization are shown in the form of flow chart in Figure.6.A pool of test cases along with their fault covered in each requirement, execution time, probability of usage and pheromone value is taken as input. Initially a test case is chosen that covers maximum faults. Since the aim is to uncover all faults, thus it is checked if all faults are covered by it or not. If all faults are not covered, then choose the next test case thatcovers the remaining faults and repeat this until all faults have been covered. Once all faults are covered, calculate the total number of faults covered by each test case which is stored in total fault test case matrix. This procedure will lead to many combinations of test case called paths that cover all faults
  • 7. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 29 Figure 6: Flowchart for proposed system Many such paths are explored while iterating and the best path from all paths explored is selected. The pheromone value is updated on the best path selected. The selection of best path is based on minimum execution time, maximum probability of usage and highest pheromone value.
  • 8. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 30 4. RESULT The results are divided into two sections viz, output section and comparative analysis. In the output section inputs and outputs screenshots are displayed which are obtained after application ofthe proposed technique.A comparative analysis is done in second section of results in which various techniques are compared based on different factors such as their execution time, risk, fault detection, representative set, cost etc. 4.1 Output The output of the system will be generated by taking all the input matrices and prioritizing them based on several criterion. Five test cases along with their faults uncovered, execution time, usage and its corresponding pheromone value is taken as input. The contents of various input files are shown below. Table 1 shows the Fault test case matrix. The faults that a certain test case uncovers are marked as ‘ ’. Table 1. Fault Test Case matrix From Table 1 it can be easily concluded that maximum faults are covered by TC 03 and TC 01 covers the faults that are left to be covered. A test case’s script length determines its execution time. For each Test case, its execution time is stored in the Execution time test case matrix. Table 2 displays the Execution time test case matrix. Table 2. Execution Time test case matrix Test Case Execution Time TC 01 7 TC 02 5 TC 03 4 TC 04 4 TC 05 5 The number of times a specific test case is used is displayed in the usage matrix shown in Table 3 below. Test Case Fault 1 Fault 2 Fault 3 Fault 4 Fault 5 Fault 6 TC 01 TC 02 TC 03 TC 04 TC 05
  • 9. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 31 Table 3. Usage matrix Test Case Usage TC 01 3 TC 02 2 TC 03 4 TC 04 2 TC 05 3 Table 3 concludes that maximum times used test cases are TC 03, TC 05 and TC 01. Test cases and their respective pheromone values are displayed in the Pheromone matrix given below. Table 4 represents the Pheromone matrix. Table 4. Pheromone matrix Test Case Pheromone Value TC 01 0.42 TC 02 0.4 TC 03 1 TC 04 0.5 TC 05 0.6 Various combinations of test cases called paths are generated and the best path is selected based on which the updation of pheromone values is done. The best path or optimal path is selected by considering several factors such as pheromone value of a test case, probability of its usage and its average execution time. The output screens are shown below: 1) Registration of Test Case Prioritization Application Any user must first register in order to use the system. The registration fields are simply the personal details of the user.
  • 10. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 32 Figure 7. Registration Screen 2) Login of Test Case Prioritization Application A registered user can login to the system and upload various files related to system that needs to be tested. Figure 8. Login Screen 3) Input Data of Test Case Prioritization Application Input data is taken in the form of various files i.e. Fault test case matrix, Execution time test case matrix, Usage matrix and Pheromone matrix.
  • 11. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 33 Figure 9. Data acceptance screen Figure 10. Uploading files screen 4) Output of Test Case Prioritization Application The output is divided into two parts. The first part shows a table that contains the list of prioritized test cases. The second part of output shows comparative analysis between non prioritized test cases and prioritized test cases on account of factors like Time taken for testing, Size of test cases, Cost of testing, Effort required and the APFD values associated with each test case.
  • 12. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 34 Figure 11. Prioritized test case screen 4.2 Comparative Analysis Table 5 shows comparative analysis between different regression testing techniques based on factors like Representive set, Execution time, Risk, Cost and Fault Detection. Table 5. Fault Test Case matrix Representative Set Execution Time Risk Cost Fault Detection Retest All Approach Strong RS Slow No (Yet risk areas are taken care of) High High Test Case Minimization Strong RS (If based on specifications) Fast No Low High (If based on specifications) Test Case Prioritization Weak RS Fast Yes (If based on risk exposure) Low Lowest
  • 13. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 35 Random Test Case Selection Weak RS Fast No Low Medium/Low Test Case Prioritization using ACO Strong RS Fast Yes Low High Table 6 shows the analysis of existing system based on time, cost, size, effort and APFD of untreated test case. Table 6. Analysis of existing application Sr.No. Principles Poor Average Good Very Good Excellent i) Time * ii) Cost * iii) Size * iv) Effort * v) APFD * Table 7 shows the analysis of proposed system based on time, cost, size, effort and APFD of prioritized test case Table 7.Analysis of proposed system Sr.No. Principles Poor Average Good Very Good Excellent i) Time * ii) Cost * iii) Size * iv) Effort * v) APFD * 5. CONCLUSION The proposed technique will optimize test cases for specific components of a software by automatically generating prioritized list of test cases to increase the efficiency of regression testing. Ant colony optimization (ACO) technique is used for prioritization and optimization of test cases. The objective of uncovering maximum faults in the functions of a software will be achieved by prioritization of test cases thereby minimizing effort, time and cost of testing.Application of this algorithm will lead to results that are optimal and reduce testers’ effort and time complexity. 6. FUTURE SCOPE Currently our system only deals with creating an optimized list of test cases from an already available pool of test cases.
  • 14. International Journal in Foundations of Computer Science & Technology (IJFCST) Vol.6, No.2, March 2016 36 a) Furthermore, the system can be extended to automatically perform the regression test after creating a list of prioritized test cases. So as to partially or to some extent completely eliminate the need of human intervention in the testing process. b) The accuracy of the system can be increased, if we could somehow estimate that what test cases would prove to be more important in the future, then their priorities could be pushed up. This can also be called as an ideal or the most optimal scenario for testing. But practically, as of now, it is impossible to achieve it, as it is not possible to estimate, in advance, that which test case might prove to be most important in the future. c) Also the system can be extended to smartly create or add its own test cases to the pool of test cases, if required. ACKNOWLEDGEMENT Our thanks to M.H. Saboo Siddik College of Engineering, Department of Computer Engineering, for giving us the initiative to do constructive work. We also thank anonymous reviewers for their constructive suggestions.