Next Article in Journal
Implementation of Block-Based Hierarchical Prediction for Developing an Error-Propagation-Free Reversible Data Hiding Scheme
Previous Article in Journal
Effect of Nano-Materials on Autogenous Shrinkage Properties of Cement Based Materials
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

On the Effectiveness of Using Elitist Genetic Algorithm in Mutation Testing

University School of Information, Communication and Technology, Guru Gobind Singh (GGS) Indraprastha University, New Delhi 110078, India
*
Author to whom correspondence should be addressed.
Symmetry 2019, 11(9), 1145; https://doi.org/10.3390/sym11091145
Submission received: 8 July 2019 / Revised: 4 September 2019 / Accepted: 5 September 2019 / Published: 9 September 2019

Abstract

:
Manual test case generation is an exhaustive and time-consuming process. However, automated test data generation may reduce the efforts and assist in creating an adequate test suite embracing predefined goals. The quality of a test suite depends on its fault-finding behavior. Mutants have been widely accepted for simulating the artificial faults that behave similarly to realistic ones for test data generation. In prior studies, the use of search-based techniques has been extensively reported to enhance the quality of test suites. Symmetry, however, can have a detrimental impact on the dynamics of a search-based algorithm, whose performance strongly depends on breaking the “symmetry” of search space by the evolving population. This study implements an elitist Genetic Algorithm (GA) with an improved fitness function to expose maximum faults while also minimizing the cost of testing by generating less complex and asymmetric test cases. It uses the selective mutation strategy to create low-cost artificial faults that result in a lesser number of redundant and equivalent mutants. For evolution, reproduction operator selection is repeatedly guided by the traces of test execution and mutant detection that decides whether to diversify or intensify the previous population of test cases. An iterative elimination of redundant test cases further minimizes the size of the test suite. This study uses 14 Java programs of significant sizes to validate the efficacy of the proposed approach in comparison to Initial Random tests and a widely used evolutionary framework in academia, namely Evosuite. Empirically, our approach is found to be more stable with significant improvement in the test case efficiency of the optimized test suite.

1. Introduction

Test data generation is a critical, labor-intensive, and time-consuming process that significantly affects software quality. However, automation can minimize the effort and may produce effective test cases satisfying specific objectives. Owing to a combinatorial problem, which is computationally intractable, different search-based algorithms have been proposed and used for generating the test suite [1,2,3,4,5]. These algorithms include Genetic Algorithm (GA), Particle Swarm Optimization (PSO), and Ant Colony Optimization (ACO), among others. Initially conceived by Holland [6], GA [7,8] is frequently adapted by the researchers and provides an evolved test suite through iterative searching of the search space. In each iteration, the fitness of the test suite is measured, and for convergence, it must satisfy some test requirements, i.e., branch coverage, statement coverage, and path coverage. Mutation testing is a type of structural software testing that inserts the fault in the source code of a program and makes it faulty. These faults exhibit the mistakes a programmer can make while writing the program, and the faulty version is known as a mutant. Test data is required to reveal a fault in the program. Here, test data are the inputs to the program and executing them against a mutant indicates whether the fault is exposed or not. Fault exposition is also known as mutation coverage. Prior studies [9,10] suggest that mutation coverage can be considered to generate a superior test suite than other coverage measures and better guides the selection mechanism of test cases for evolution.
Mutants are widely accepted and simulated artificial faults that behave similarly to realistic ones [11,12] for test data generation [9,13]. These are created by systematic injection of faults using predefined mutation operators [14]. Mutation testing was initially suggested by DeMillo [15] and later explored by different researchers [16,17,18]. Execution of a test case (test inputs) against these faults results in the adequacy score of that test case. This score is also known as mutation score (%), which is measured using the killed mutants (covered faults, KM) and the total non-equivalent mutants (M) and is expressed as [ | K M | × 100 / | M | ]. However, some of the mutants are not recognized by any of the test cases because they do not differ from the original program. Therefore, such mutants are referred to as equivalent and adversely impact the test suite performance [19,20]. The problem of identification of equivalent mutants has also been addressed in prior studies [21,22,23]. Apart from the several benefits including a reduction in the search space and providing the framework for test suite quality assessment, mutation testing also suffers from a high computational cost. However, in the last few decades, researchers have tried to minimize this cost by using various techniques which usually follow do-fewer, do-smarter, or do-faster kinds of strategies [17,18,24,25,26,27,28,29,30,31,32,33] and more studies can be traced in a recent survey [34]. Selective mutation, which is used in the current study, is one of these approaches that generate mutants by applying some operators from the large set of mutation operators [14] (Section 2.1).
Search-based techniques with mutation testing have also been extensively researched and can be traced in the relevant surveys [35,36,37,38,39]. According to these studies, GA is more preferred by the research community. Literature in the test data generation field is reviewed and summarized in Table 1 in chronological order. It contains the records of publication details, tool availability, type of mutants created, search technique implemented for test generation, population size, and fitness function.
Initially, Baudry et al. [40,41] reported the natural killing of 60% mutants using the first set of component test cases. However, to detect more hard-to-kill mutants (90% mutants), they suggested to use GA to iteratively evolve the test cases. The same fitness function (mutation score) was used by other researchers as well to find a mutation adequate test suite in [42,43,44,45]. Application of GA with mutation testing has also been applied in finite state machines (FSM) by Molinero et al. [46] and Nilsson et al. [47].
Later, a new idea for mutant identification and formulating fitness function was suggested by Bottaci [48] and implemented by [49,50]. Following the related idea of fitness evaluation, Fraser [9,10] employed GA with weak mutation testing in a tool known as Evosuite. It automatically generates test cases using assertions. The performance of this tool is further demonstrated and compared in other prominent studies [51,52,53,54,55].
Considering the object’s state, Bashir and Nadeem [56] proposed a novel fitness function, which restricts the search process by reviewing the tests that have either obtained the desired state or requires more method calls. The authors in [57,58,59] further extended the work that resulted in the development of a tool named eMuJava. They also compared the relative performances of their proposed variation of GA with traditional GA using ten Java programs of total 1028 LOC. In their study, improved GA converged in 373 iterations and created 9325 test cases that detected 93.5% mutants for triangle program. C++ mutation operators were also used by Perez et al. [60,61,62] for mutant selection and test suite improvement. Higher-order mutants were also examined for test creation using GA by Ghiduk [63].
The study in this paper expands our previous work [45,64], dealing with GA and mutation testing. However, this work presents an improved fitness evaluation, incorporation of elitism, and performance comparison with the existing techniques. It implements a variant of GA by effectively blending the benefits of mutation testing for non-redundant test suite generation, followed by a novel fitness function that considers test case complexity in terms of time-steps with high fault exposure. Test case complexity impacts the process of testing at a more considerable extent for finding the faults. In this exposition, the performance of the proposed approach is compared with a popular testing tool, i.e., Evosuite [10] as well as with Initial Random tests. The contributions of this study are:
  • Implementation of GA using the idea of diversification and intensification along with the integration of elitism and mutation-based fitness function. It addresses the problem of costly test suite with fault revealing abilities.
  • Comparison of the effectiveness, efficiency and cost of the proposed approach with the state-of-the-art techniques on 14 Java programs on different evaluation metrics.
  • Analyzing the impact of other artificial faults on the effectiveness of generated test suite.
This paper is organized as follows: Section 2 presents the basic terminologies with the proposed approach and an illustration of its execution. Section 3 describes the experimental setup and information of mutants used and Section 4 discusses the results of the evaluation with some limitations. Section 5 concludes with the significant findings of this study.

2. Methods and Materials

2.1. Terminologies and Illustrations

(a)
Software Testing: It is the process of executing a program with the intent of finding the faults [65]. Actual output and expected output of executing a test case are compared and if they differ then it is said that fault is present.
(b)
Test Case: A test case is an input to the program with its expected output and is used for testing the functionality of the program [65]. A collection of test cases is called a test suite, e.g., for a single input problem, a test case can be { T 1 = 7 } , while for two input problem, { T 1 = ( 8 , 4 ) } .
(c)
Mutation Testing: It is a method of software testing that seeds the faults or errors in the program with a precondition of the syntactical correctness of the altered program [16,18].
(d)
Mutants: The faulty version of a program is known as mutants. A mutant with a single fault is characterized as a single order mutant while those with more than one fault are higher-order mutants.
(e)
Mutation Operators: Mutants are generated using some metagenic rules [14,66] which seeds the fault in the program systematically. These metagenic rules are termed as mutation operators in mutation testing (Figure 1). Figure 2 illustrates a few examples of such mutants.
(f)
Killing a Mutant: A test t T (Test Suite) kills a mutant m M (set of Mutants) if the execution of t can distinguish the behavior of the original program s and mutant program m. It can be expressed as: t kills m : = m ( t ) s ( t )
(g)
Mutation Score: A test t that kills K M mutants out of M mutants, for t, mutation score (%) is calculated as M S [ t ] : = | K M | × 100 / | M |
(h)
GA and its Operators: GA is an evolutionary algorithm based on the concept of natural genetics of reproduction [6,7,8]. In an iteration of execution, it starts with the random initial population P, fitness evaluation of P, selection, reproduction (crossover and mutation) and stops re-iterating when an optimal solution is found (Figure 3). Each individual in the population is represented as chromosome (a sequence of genes) and encoded in binary for a binary-encoded GA, which is used in this study. For the evolution of individuals, crossover combines two individuals and produces two new individuals (offspring); on the other hand, mutation flips a bit in the gene of a chromosome [67]. In this work, a population of GA is mapped to the set of test cases, and the chromosome is mapped to the concatenated value of test inputs.

2.2. Description of Proposed Approach

The flow chart in Figure 4 illustrates the functionality of our proposed approach tdgen_gamt that begins with reading the source code of the original program and outputs: list of methods in the original program, the number of input variables for method under test for random initialization of the population. Here, the population refers to a collection of test cases that are forwarded for fitness evaluation over the artificial mutants (the faulty version of a subject program), and the fault matrix (Figure 5) also gets updated in each iteration. The approach then proceeds with the selection of parent test cases for reproduction, which in turn applies intensification and diversification, if not converged. We perform intensification (crossover) when there is a chance of improvement in test case locally, otherwise, perform diversification in the form of mutation that intends to diversify the solution globally. At the end of each iteration, if tdgen_gamt converges, it stops functioning and provides the non-redundant test suite with mutation coverage information.
As shown in Algorithm 1, our approach tdgen_gamt creates a random solution of test inputs, i.e., p o p , which is initially empty. In this paper, each test input can have its value in the range [ 10 , 110 ] . Here, we use a binary-coded Genetic Algorithm and perform crossover and mutation on the binary string. Therefore, the integer test inputs are converted in binary using (8× number of inputs) bits for reproduction (8 bits are sufficient to represent each test input in the range [ 10 , 110 ] ). There are variants for chromosomes encoding in GA e.g., gray, binary and, real, and each has its own advantages and disadvantages [68,69,70]. Binary encoding is beneficial to include a sudden change in the population of solutions, which is desirable in the current study to diversify the population for increasing the chances of detecting live mutants. We evaluate the quality of the test suite by executing it against the mutants (each test case is executed over each mutant in the set) (Section 2.2.1), and the fitness of each test case is recorded in the fault matrix (Figure 5). For example, we have n number of mutants ( M 1 M n ) and 4 test cases uniquely identified by test case IDs ( T 1 T 4 ). Each test case has its own fitness, complexity, and mutant detection information in the form of 0 and 1 which in turn express live and killed mutant, respectively.
Algorithm 1: The Proposed Approach tdgen_gamt
Symmetry 11 01145 i001

2.2.1. Fitness Evaluation

In this study, we aim to generate test cases with maximum effectiveness (measured in terms of mutation score, which is the fault-finding capability of a test case) along with minimum test case complexity ( T C C ). Therefore, the inverse of T C C appears as part of fitness evaluation (Equation (1)). Furthermore, there is no correlation between test case effectiveness and T C C since effectiveness depends only on the value of the test case that is used for program execution and mutant detection. Algorithm 2 explains the calculation of fitness function and mutation score.
Fitness Function = T C E + ( 1 / T C C )
Algorithm 2: FitnessEvaluation ( T , M )
Symmetry 11 01145 i002
Here, T C E (Henceforth, T C E refers to Test Case Effectiveness and measured using mutation score ( M S )) is measured using the fault-finding capability of a test case, i.e., mutation score that has been frequently used in the literature. T C C ( T C C refers to Test Case Complexity in terms of time-steps) is the test case complexity in terms of time-steps measured in microseconds using an in-built library of Java (java.lang.reflect.Method). Here, T C C is not source code complexity or cyclomatic complexity. The latter is used for path coverage while we are generating the tests for mutant coverage. We assume that a complex test case might take more time for execution than the less complex one. Two test cases may detect the same faults and have the same mutation score but definitely, differ in complexity (e.g., a test case with value 100 will run “for-loop” 100 times and take more steps for execution than another test case with value 1 or less than 100. In this case, a test case with lower execution time-steps is selected first to be kept in the fault matrix if both detect the same faults). The designed fitness function intends to select better tests with minimum cost. At any time that fitness is evaluated, redundant tests are also removed, and consequently, fault matrix gets updated.
A redundant test case detects the faults previously identified by another test. Such test cases do not contribute to testing and only increase the cost [71]. Let us take an example to understand the concept. Assume there are two test cases T 1 and T 2 . T 1 identifies faults M 1 and M 2 . If test case T 2 only detects fault M 2 . Then, we say that execution of T 2 is not required because both faults can be killed by executing only T 1 ; therefore, test case T 2 is redundant and can be deleted from the test suite without losing the effectiveness of the test suite. Removal of such tests leads to an efficient test suite. The pseudocode in Algorithm 3 illustrates how redundant tests are identified and removed.
Algorithm 3: RemoveRedundantTests (T)
Symmetry 11 01145 i003

2.2.2. Diversification vs. Intensification for Reproduction

While generating solutions, search-based algorithms (evolutionary algorithms) perform two operations, i.e., intensification and diversification [72,73,74]. In intensification, it searches the neighborhood search space and exploits the solution by selecting the best of these local solutions. Diversification, however, explores the search space globally and tries to diverse the solution. In this study, during every successive iteration, the current population of tests evolve based on the fact that it might be improved in the local optimum (intensification) or needs diversification globally. In GA, intensification favors the current population and perform crossover to find the better offspring in terms of fitness [72]. Two chromosomes exchange their properties at a random position and create two new offspring. In this study, we perform uniform crossover (Algorithm 1) on the parent population with 0.5 random probability (this type of crossover is recommended for the chromosomes with moderate or no linkage among its genes [67], which suits to this study). We also ensure that each pair of test case participate in this phenomenon only once. Therefore, n parent test cases generate n new offspring and thus reduces the time and space complexity. Each offspring is then evaluated for fitness using Equation (1). We then check for the offspring, able to kill some live mutants or better than its parent population. These crossover test cases are merged with the previous population and the process is repeated till convergence. However, if crossover test cases fail to kill some live mutants or is not better than its parent, then, diversification in the form of one-point mutation (Algorithm 1) is preferred to increase the probability of detection of live faults as well as reduces the risk of identifying an already killed fault. Mutation is applied to all crossover test cases. Here, a single bit is flipped from 0 to 1 or vice versa at a random position between 0 to the length of the gene in a chromosome. The intention behind this strategy of intensification and diversification is only to improve the effectiveness of the test suite iteratively. We present an example (Figure 6) for ease in understanding the idea (a detailed example is given in Section 2.3).
Let we have two test cases T 1 , T 2 with their killed mutants ( M 1 , M 2 , M 6 ) and ( M 2 , M 4 ) respectively. Consider case 1, parent test cases T 1 , T 2 are improved via intensification (crossover); however, offspring from crossover ( C 1 , C 2 ) is not more effective than parent test case, but C 1 , C 2 kill live mutant M 8 and M 5 respectively. It makes C 1 and C 2 valuable in the entire population. Meanwhile in case 2, C 1 and C 2 do not enhance the effectiveness of the complete test suite, therefore C 1 , C 2 are diversified using mutation. This may produce effective test cases.

2.2.3. Population Replacement Strategy and Elitism

In general GA, all the individuals of a current population are removed and new individuals for the new population are derived using reproduction over the current population. By doing so, it may lose the best individuals due to its stochastic nature. Therefore, some best solutions are retained as elitist solutions and guarantees that the quality of the solutions will be improved iteratively [67,75,76]. We use the benefits of elitism to sustain all non-redundant individuals of the previous population which can be 10%, 20% or 50% of the entire population depending on fault-finding behavior of the test cases during execution (Algorithm 1). Usually, GA works on the principle of human reproduction. In this, the older and less fit solutions get dead in each iteration and some of the fitted solutions are kept as the elitist solution. With time, these solutions lose their fitness and are replaced with the new ones. However, in testing, a test case will have the same fitness throughout the process. Test case fitness is evaluated on all the mutants and during the process, no new mutant is added. Thus, if we get a test case that is good in finding the fault, we can preserve it and can cut the cost of re-generating a similar test case which is already created in the previous iteration. Fitness evaluation for such test cases is also not required in successive iteration, we can use the preserved fitness. That is why we save all the non-redundant and valuable test cases as the elitist solution in each iteration regardless of their fitness (best or worst). A test case in an adequate test suite is considered to be effective and relevant if it succeeds in killing a resistant or hard mutant irrespective of its fitness [77]. This elitism strategy may minimize the cost of finding the optimum solutions in a fewer number of iterations.

2.2.4. Convergence

In general, search-based algorithms stop functioning at convergence based on some criteria such as reaching a time limit, iteration, or coverage. The proposed approach tdgen_gamt converges when all the non-equivalent mutants are killed by the test suite, i.e., achieving 100% mutation score. However, it may be possible that some mutants are not killed even after a significant number of iterations; such mutants are too hard to be identified and might be killed only by specific tests, e.g., in the case of equilateral triangle (all inputs must be equal). To avoid such a situation, another criterion is also defined, i.e., iteration limit. The approach stops functioning when any of the criteria satisfy (Algorithm 1).

2.3. A Detailed Example

To show how the approach works for test generation, we take an example for generating tests for a single input problem (Table 2). Let the population size is 8 and the number of non-equivalent mutants is 10 ( M 1 M 10 ). Initially, eight test cases ( T 1 T 8 ) are randomly created and executed against all the mutants ( M 1 M 10 ). For each test case ( T 1 T 8 ), fitness, and mutation score are evaluated. In iteration 1, test T 1 detects 5 mutants out of 10, therefore its mutation score is evaluated as 50. We also checked the status of each test case as redundant (R) or non-redundant (N). After fitness evaluation, best tests ( T 1 , T 7 ) are selected to perform crossover (intensification) and generate two new offspring i.e., C 1 , C 2 . After their fitness evaluation, it is found that test case C 1 is redundant but C 2 is non-redundant. In this case, we say that intensification is worthy and adds one new test case in the population. At the end of the iteration, non-redundant crossover test cases are merged with the previous non-redundant solution and total five test cases are obtained ( T 1 , T 5 , T 6 , T 7 , C 2 ). We then check for convergence, mutation score of the complete test suite is 90% that is <100. We then again re-iterate the complete process. At the beginning of each iteration, the size of the population is maintained, and 3 more random test cases are added in iteration 2. We then perform crossover on T 1 and T 7 which lead to C 3 , C 4 . Here, it is found that both crossover test cases are redundant and could not kill any live mutant. Here, we say that intensification could not produce valuable test cases. Therefore, we try to diverse the crossover population i.e., C 3 , C 4 using mutation with the possibility to obtain the desired test cases. This leads to M T 1 , M T 2 and only M T 1 is found to be non-redundant. The leftover live mutant M 10 is killed by this new offspring M T 1 . Now all the non-redundant new offspring and previous population are kept together and it is found that all the mutants are now successfully detected by these test cases ( T 1 , T 5 , T 7 , C 2 , M T 1 ). At convergence, our approach tdgen_gamt stops and returns the non-redundant test suite.

3. Experimental Setup

This section explains the experimental settings of different scenarios presented in this study. First, it presents the subject programs (Section 3.1), along with how mutants are generated (Section 3.2). Then, we discuss the evaluation metrics used to measure the efficacy of our proposed approach.

3.1. Subject Programs under Test

We conduct the empirical experiment on 14 Java programs used widely in mutation testing and test data generation [10,18,35,36]. The number of inputs varies between 1–6 in the selected programs. S2 and S5 have the minimum number of inputs, i.e., one. Furthermore, S8 and S9 programs have the largest set of inputs, i.e., five, six, respectively. The LOC of the selected programs ranges between 19–153 and their specifications are listed in Table 3. In this study, test cases are only generated for the considered method which is the main calling method in the corresponding subject program.

3.2. Mutants Used

To check the adequacy of the test data, artificial faults are created using MuJava [84] instead of real faults. The procedure of mutant generation is illustrated in Figure 7. MuJava creates method-wise mutants (methods in the subject program) and test cases are generated for the driver method (main calling method) in this study. Inspired by the reduced cost of selective mutation, only few mutation operators (SDL-Statement Deletion, ODL—Operator Deletion, CDL—Constant Deletion, and VDL—Variable Deletion) are incorporated for mutant generation (Figure 1) because all operators are not cost-effective and produce a higher number of equivalent mutants and redundant mutants [20]. According to Untch [66], these mutants are powerful and generates fewer equivalent mutants and require highly effective tests for fault detection [85,86]. It is also noticed that ODL mutants are a super-set of VDL and CDL mutants. Therefore, only SDL and ODL mutants are kept for further use. All the mutants, including SDL and ODL are again analyzed for equivalence detection using 1000 random test cases, and live mutants are further analyzed manually for equivalent mutant detection.
In this study, we created two types of artificial faults for method under test of subject programs. The first set contains the mutants (SDL, ODL) which are used for test case creation while another set (traditional mutants) is used for evaluating the results and for comparison with the state-of-the-art techniques (Figure 1). Traditional mutants [14] are generated and found to be 80% more than the set 1 mutants. The executable mutants for the considered method under test of each subject program are listed in Table 4. Total mutants generated by each of the SDL, ODL and traditional operators are 283, 385, and 3452 respectively; out of these, 5%, 2%, and 7% mutants are found to be equivalent for each operator respectively (Table 5). Some of the mutants are not executable, throw an exception, and stick in infinite loops. Such mutants are deleted before test generation. Non-executable mutants are 3%, 1%, 6% for SDL, ODL and traditional mutants respectively (Table 5).

3.3. Evaluation Metrics

To compare the effectiveness of our approach with Evosuite and Initial Random tests, different evaluation metrics are considered and listed in GQM template (Table 6) [27,87]. Answers to the questions are discussed in Section 4.

3.4. Experiments

We apply tdgen_gamt to generate and select only non-redundant test inputs and repeat this 50 times to alleviate the consequences of random variation. To quantify the efficacy of our approach, various statistics measures are recorded, including mutation score, test suite size, and test case efficiency. Experiments are carried out on a 32-bit system with core i7 processor and 4GB RAM. To automate the approach tdgen_gamt, Eclipse IDE for Java developer Mars version is used with JDK8.

4. Results and Discussion

This section discusses the results of each research goal listed in Table 6. The performance of our approach is also evaluated and discussed in the succeeding Section 4.1. To evaluate the efficacy of the proposed approach, it is compared with Evosuite and Initial Random tests in terms of various aspects i.e., test suite effectiveness, test suite size, and test case efficiency. For a fair comparison, Evosuite test cases are executed only for the method under test.

4.1. Performance of the Proposed Approach tdgen_gamt

Our proposed approach creates the optimized test suite using elitist GA (Algorithm 1). We collected all the results related to achieved mutation coverage, test generation time (in seconds), number of iterations required, final test suite size and the total number of fitness evaluations performed till convergence and detailed in Table 7. For each of the problem, our approach takes [ 0.1 , 10.2 ] s on average for creating a test suite by successfully detecting [88–100%] mutants. Fitness evaluations are also recorded to show that only [24–574] test cases are evaluated till convergence. On average, only 10 test cases out of 238 tests are found to be non-redundant and valuable. This shows that our approach generates low-cost test suite by repetitive deletion of obsolete tests for the method under test of each subject program. tdgen_gamt takes advantage of intensification and diversification for finding the solution in fewer number of iterations as well as time. This seems to be useful in the area of search-based optimization by balancing between the control parameters.

4.2. Effectiveness Comparison with Evosuite and Initial Random Tests

This section evaluates whether the proposed approach with intensification and diversification can guide the search process to obtain the desired outcome. Evosuite is a state-based evolutionary test suite generation tool implemented by Fraser and Arcuri [10], where tests are created using weak mutation coverage criteria. There is no provision to find out the information about the number of mutants generated and mutation score achieved by the resultant test suite. On the other hand, our approach tdgen_gamt reports above-listed measures along with test suite size and fitness evaluations. Both approaches also differ in fitness evaluation and mutation operator selection. Evosuite calculates the fitness using the distance to calling function, distance to mutation and mutation impact, while in tdgen_gamt, it is computed using test case effectiveness and its complexity in terms of time-steps. Evosuite internally generated mutants for eight mutation operators [10] (Table 8) while we create mutants only for delete operators (SDL, ODL).
The results by taking only the average mutation score into consideration show that Evosuite tests (With greater test size than our proposed mechanism) outperform the other two by 9% (our approach) and 17% (Initial Random Tests) referring all traditional mutants. Evosuite needs on average 12 test cases to identify 96.35% traditional mutants while our approach requires only 10 test cases to kill 87.83% traditional mutants. As stated in [88], a technique is recognized more effective when it generates tests, killing more faults using an equal size test suite. Considering the size of the test suite along with mutation score, we also analyze the effectiveness of each approach and named it as test case efficiency ( T C E F ) (Equation (2)). The discussion related to T C E F is given in Section 4.3. Overall, out of 2993 executable traditional mutants, Evosuite could detect 2884 mutants, tdgen_gamt could kill 2629 mutants while Initial Random tests killed only 2383 mutants. For some of the programs (S8, S9, S10), Initial tests could detect more traditional mutants than tdgen_gamt. For such cases, removing redundant tests found to be harmful. As a test case is redundant for a mutant set but may be non-redundant for some other mutant set. Therefore, Initial tests perform better for traditional mutants for S8–S10. On the other hand, tdgen_gamt could achieve high fault exposure when considering SDL, ODL faults.
We run each of the approaches 50 times and record average and median mutation score achieved against traditional as well as SDL, ODL mutants (Table 9). Standard deviation is also measured to show the variability among data from the mean. For each of the program, the standard deviation is found to be minimum in case of tdgen_gamt, which in turn suggests that our approach performs similarly and produces stable results when executed for any number of times. Meanwhile, for Evosuite, test suite deviates from the mean in the range [0, 9]. For our approach, average and median are found to be equal for most of the programs that further demonstrate that it produces the test suite in a symmetric fashion.
During experimentation, we calculate the mutant detection rate of each mutant and analyze which approach is successful in detecting stubborn mutants [89]. Results (Table 10) reveal that out of 2993 executable traditional mutants, approximately 2–3% artificial faults could never be killed by any of the approaches that further indicates our approach conclusively perform good at recognizing the traditional mutants. Meanwhile, in the case of SDL, ODL faults, our approach successfully detected approximately all the mutants out of 634 executable mutants.

4.3. Efficiency and Cost Comparison with Evosuite and Initial Random Test

We evaluate the efficiency and cost by recording the statistics for test case efficiency (Equation (2)) ( T C E F ), and test suite size ( T S S ) (Table 11).
Test Case Efficiency ( T C E F ) = T S E / T S S
Here, T S E (Henceforth, T S E refers to test suite effectiveness) is the effectiveness of complete test suite i.e., mutation score of the test suite. T S S ( T S S refers to Test Suite Size) is the size of the test suite i.e., the number of test cases in the resultant test suite.
Figure 8 demonstrates the improvement in efficiency and reduction in test suite size for our proposed approach over Evosuite tests. We also analyze how much initial tests are genetically improved using tdgen_gamt. From the results (Table 11, Figure 8), it is found that tdgen_gamt generates 13%, 205% more efficient and 18%, 60% reduced test suite than Evosuite and Initial Random tests respectively. Removing non-redundant test cases greatly minimizes the resultant test suite size, which in turn increases T C E F (Equation (2)). However, efficiency is not improved when compared with Evosuite and varies in the range [ 15 , 2 ] for some of the subject programs. It might be the reason that Evosuite generates the test cases using some of the traditional mutants while our approach uses only SDL, ODL mutants for test creation. Therefore, we can say that the test suite from both approaches will definitely perform better for the mutants they use for fitness evaluation.

4.4. Stability Analysis

Reproducibility and conclusion stability are two significant characteristics of any new proposed approach. To validate the stability of our approach, we repeat 50 experiments and collect the average results (Table 12). When considering full mutation coverage, our tests perform best for five subject programs; however, is found to be worst for S6, S12, S13, and S14 only. It might be a reason that these programs require some specific test cases, e.g., to identify an equilateral triangle, all inputs must be equal. On average, it could not achieve the full coverage for [36, 100]% times for six out of 14 programs. For each program, test data always revealed more than 90% mutants except for subject program S12. For each of the 50 runs, the standard deviation is too minimum and very close to 0 (Table 9), therefore, it can be stated that it is stable. According to the results, it can be declared that our algorithm can generate the test suite with higher mutation coverage.

4.5. Selection of Control Parameters

The performance of GA primarily depends on its parameters, i.e., population size, number of iterations, reproduction operator probability and method, and convergence criteria. We investigate the impact of these parameters on different efficiency measures. The population size symbolizes the number of individuals present in each population. It is expressed using an array of bits, i.e., binary-coded values of each input. For example, in the case of Power program, each individual is encoded as an array of 8 bits, each byte representing the value of inputs. Our approach is replicated for different values of control parameters (Table 13) and repeated 50 times due to the stochastic nature of GA. Impact on several measures, i.e., test generation time and coverage are recorded and illustrated in Figure 9. For each of the 14 subject programs (method under test), we execute tdgen_gamt 50 times for 24 different parameter values ( 24 × 14 × 50 = 16,800).
For each of the subject programs, the size of the population depends on the number of input variables. Performance is evaluated for four different sizes of the population, and we noticed that increasing the population size has a remarkable impact on test generation time. Handling a too-large population is more time-consuming. Our approach tdgen_gamt keeps mutation coverage and test generation time in the range of [ 79 , 100 ] and [ 0.06 , 4 ] (seconds) respectively, for the minimal population size; while for higher population, there is little improvement in coverage but it drastically increases the cost (Figure 9). Therefore, we can state that with 10×Inputs population, tdgen_gamt perform better when considering both measures, i.e., time and coverage.
Considering three different iteration limits, i.e., 30, 50, and 100, we find a drastic improvement in test effectiveness (mutation score) for only subject program S12 (Figure 9). It indicates that within 30 iterations, our approach successfully killed most of the mutants. However, there is a continuous increment in test generation time for S6, S12, S13, and S14 programs. Considering both the parameters, the proposed approach is recommended to run for 30 generations.
To select how many parent test cases participate in reproduction, we experiment with the best 25% and 50% of test cases. Results (Figure 9) reveal that there is no improvement in mutation score except for S5. Therefore, we state that the fittest 25 % test cases are sufficient for parent selection.

4.6. Limitation of the Proposed Approach

The choice of mutation operators can significantly impact the test suite size and its effectiveness. A test case may be redundant for a set of mutants while it may not be so for other sets of mutants. Removing redundant tests could miss out some valuable test cases which otherwise may be good at detecting other types of faults. To establish a preponderance of the proposed approach, test cases were executed against traditional mutants also. The size and input type of the subject programs is a limitation of our study. At present, this study considers fixed integer inputs; however, it would be relevant to extend it for other data types, including dynamic arrays and strings. Moreover, further experimentation with varying and large program size can also be examined.

5. Conclusions

Test data generation is a time-consuming and critical process, which can be optimized using different search-based algorithms satisfying specific coverage measures. In the literature, mutation coverage is considered to be more powerful than other measures. However, taking mutation coverage as a stopping criterion may result in a large test suite. In this paper, a GA with the objective of low-cost mutation coverage (tdgen_gamt) is implemented for generating the test data. To generate the highly qualified test for fault detection, a fitness function is also proposed that maximizes the effectiveness as well as minimizes the complexity of each test case. Each test case in the solution set is different and non-redundant from others in killing the faults. To preserve the valuable test cases in each iteration, the concepts of ’elitism’ along with ’intensification’ and ’diversification’ are employed; it speeds up the process of convergence.
A good number of experiments are performed on widely used 14 Java programs to tune the control parameters and to mitigate the effects of random generation. We compared the results with a popular automatic tool in academia Evosuite and Initial Random tests. These three techniques do not perform equally in identifying the mutants with low-cost test data. Major findings of this experimental work are listed below.
  • Empirically, the obtained test suite could detect on average 87.83% (tdgen_gamt), 96.35% (Evosuite), and 79.6% (Initial Random tests) executable traditional faults irrespective of test suite size. This anomaly of preponderance can be explained on the account of measuring the effectiveness of the approach by considering the size of the test suite (test case efficiency). The proposed approach detects the maximum number of mutants with fewer and less complex test cases.
  • Additionally, we also analyze the detection rate of each fault type from each of the approaches. The results report that tdgen_gamt could perform equally at finding the stubborn mutants. Meanwhile, only 0.3%, 1.1%, and 1.9% SDL-ODL mutants are identified as stubborn by tdgen_gamt, Evosuite, and Initial Random tests, respectively. This indicates tdgen_gamt successfully killed approximately all the mutants and may easily detect stubborn mutants.
  • Also the removal of redundant tests raises the efficiency of the approach. In particular, based on the conducted study, our approach tdgen_gamt generates 13%, 205% more efficient and 18%, 60% reduced test suite than Evosuite and Initial Random tests respectively. A set of test cases that is redundant for one set of mutants may not be redundant for another set of mutants.
  • During reproduction, crossover operation is performed only once on each parent test case. This choice of reproduction operator also lowers the time complexity of tdgen_gamt.
  • The use of elitism helps in fast convergence.
  • The suggested fitness function appropriately guides the search process by finding the highly effective and less complex test cases in terms of finding the faults.
  • Our approach successfully qualifies the stability test and fails only 5% (on average) in identifying more than 90% mutants.
  • Use of low-cost mutation operators (produces 80% fewer mutants than traditional mutants) makes it easily adaptable by others.

Author Contributions

All authors contributed equally to this work.

Funding

This research received no external funding.

Acknowledgments

The authors would like to acknowledge the Ministry of Electronics and Information Technology, Govt. of India for supporting this research under Visvesvaraya Ph. D. Scheme for Electronics and IT.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Dave, M.; Agrawal, R. Search based techniques and mutation analysis in automatic test case generation: A survey. In Proceedings of the 2015 IEEE International Advance Computing Conference (IACC), Bangalore, India, 12–13 June 2015; IEEE: Piscataway, NJ, USA, 2015; pp. 795–799. [Google Scholar]
  2. McMinn, P. Search-based software test data generation: A survey: Research articles. Softw. Test. Verif. Reliab. 2004, 14, 105–156. [Google Scholar] [CrossRef]
  3. McMinn, P. Search-based software testing: Past, present and future. In Proceedings of the 2011 IEEE Fourth International Conference on Software Testing, Verification and Validation Workshops (ICSTW’11), Berlin, Germany, 21–25 March 2011; IEEE Computer Society: Washington, DC, USA, 2011; pp. 153–163. [Google Scholar]
  4. Sahin, S.; Akay, B. Comparisons of metaheuristic algorithms and fitness functions on software test data generation. Appl. Soft Comput. 2016, 49, 1202–1214. [Google Scholar] [CrossRef]
  5. Ali, S.; Briand, L.C.; Hemmati, H.; Panesar-Walawege, R.K. A systematic review of the application and empirical investigation of search-based test case generation. IEEE Trans. Softw. Eng. 2010, 36, 742–762. [Google Scholar] [CrossRef]
  6. Holland, J.H. Adaptation in Natural and Artificial Systems: An Introductory Analysis with Applications to Biology, Control and Artificial Intelligence; MIT Press: Cambridge, MA, USA, 1992. [Google Scholar]
  7. Yang, X.-S. Nature-Inspired Optimization Algorithms; Elsevier: Amsterdam, Poland, 2014. [Google Scholar]
  8. Sivanandan, S.N.; Deepa, S.N. Intorduction to Genetic Algorithms; Springer: Berlin, Germany, 2008. [Google Scholar]
  9. Fraser, G.; Zeller, A. Mutation-driven generation of unit tests and oracles. IEEE Trans. Softw. Eng. 2012, 38, 278–292. [Google Scholar] [CrossRef]
  10. Fraser, G.; Arcuri, A. Achieving scalable mutation-based generation of whole test suites. Empir. Soft. Eng. Springer 2015, 20, 783–812. [Google Scholar] [CrossRef]
  11. Andrews, J.H.; Briand, L.C.; Labiche, Y. Is mutation an appropriate tool for testing experiments? In Proceedings of the 27th International Conference on Software Engineering (ICSE’05). St. Louis, MO, USA, 15–21 May 2005; ACM: Copenhagen, Denmark, 2005; pp. 402–411. [Google Scholar]
  12. Just, R.; Jalali, D.; Inozemtseva, L.; Ernst, M.D.; Holmes, R.; Fraser, G. Are Mutants a Valid Substitute for Real Faults in Software Testing. In Proceedings of the 22nd ACM SIGSOFT International Symposium on Foundations of Software Engineering (FSE’14), Hong Kong, China, 16–22 November 2014; ACM: Copenhagen, Denmark, 2014; pp. 654–665. [Google Scholar]
  13. Rad, M.; Akbari, F.; Bakht, A. Implementation of common genetic and bacteriological algorithms in optimizing testing data in mutation testing. In Proceedings of the 2010 International Conference on Computational Intelligence and Software Engineering (CiSE), Wuhan, China, 10–12 December 2010; IEEE: Piscataway, NJ, USA, 2010; pp. 1–6. [Google Scholar]
  14. Ma, Y.S.; Offutt, J. Description of method-level mutation operators for java. Electronics and Telecommunications Research Institute, Korea. 2005. Available online: https://cs.gmu.edu/~offutt/mujava/mutopsMethod.pdf (accessed on 8 September 2019).
  15. DeMillo, R.A.; Lipton, R.J.; Sayward, F.G. Hints on test data selection: Help for the practicing programmer. Computer 1978, 11, 34–41. [Google Scholar] [CrossRef]
  16. Hamlet, R.G. Testing programs with the aid of a compiler. IEEE Trans. Softw. Eng. 1977, 3, 279–290. [Google Scholar] [CrossRef]
  17. Offutt, A.J.; Untch, R.H. Mutation 2000: Uniting the Orthogonal. In Mutation Testing for the New Century, MUTATION 2001 Workshop; Springer: Berlin, Germany, 2001; pp. 34–44. [Google Scholar]
  18. Jia, Y.; Harman, M. An analysis and survey of the development of mutation testing. IEEE Trans. Softw. Eng. 2011, 37, 649–678. [Google Scholar] [CrossRef]
  19. Grun, B.J.M.; Schuler, D.; Zeller, A. The Impact of Equivalent Mutants. In Proceedings of the 2009 International Conference on Software Testing, Verification, and Validation Workshops, Denver, CO, USA, 1–4 April 2009; IEEE: Piscataway, NJ, USA, 2009; pp. 192–199. [Google Scholar] [Green Version]
  20. Just, R.; Schweiggert, F. Higher accuracy and lower run time: Efficient mutation analysis using non-redundant mutation operators. Softw. Test. Verif. Reliab. 2015, 25, 490–507. [Google Scholar] [CrossRef]
  21. Budd, T.A.; Angluin, D. Two Notions of Correctness and Their Relation to Testing. Acta Inf. Springer 1982, 18, 31–45. [Google Scholar] [CrossRef]
  22. Offutt, A.J.; Pan, J. Detecting equivalent mutants and the feasible path problem. In Proceedings of the Eleventh Annual Conference on Computer Assurance, Systems Integrity, Software Safety. Process Security(COMPASS’96), Stockholm, Sweden, 17–21 June 1996; IEEE: Piscataway, NJ, USA, 1996; pp. 224–236. [Google Scholar]
  23. Kintis, M.; Papadakis, M.; Jia, Y.; Malevris, M.; Traon, Y.L.; Harman, M. Detecting Trivial Mutant Equivalences via Compiler Optimisations. IEEE Trans. Softw. Eng. 2018, 44, 308–332. [Google Scholar] [CrossRef]
  24. Untch, R. Mutation-based Software Testing Using Program Schemata. In Proceedings of the 30th Annual Southeast Regional Conference (ACM-SE’92), Raleigh, NC, USA, 8–10 April 1992; ACM: Copenhagen, Denmark, 1992; pp. 285–291. [Google Scholar]
  25. Offutt, A.J.; Lee, A.; Rothermel, G.; Untch, R.H.; Zapf, C. An experimental determination of sufficient mutant operators. ACM Trans. Softw. Eng. Methodol. 1996, 5, 99–118. [Google Scholar] [CrossRef]
  26. Jia, Y.; Harman, M. Constructing Subtle Faults Using Higher Order Mutation Testing. In Proceedings of the 8th International Working Conference on Source Code Analysis and Manipulation (SCAM’08), Beijing, China, 28–29 September 2008; IEEE: Piscataway, NJ, USA, 2008; pp. 249–258. [Google Scholar]
  27. Mateo, P.R.; Usaola, M.P. Reducing Mutation Costs through uncovered Mutants. Softw. Test. Verif. Reliab. 2015, 25, 464–489. [Google Scholar] [CrossRef]
  28. Ma, Y.S.; Kim, S. Mutation testing cost reduction by clustering overlapped mutants. J. Syst. Softw. 2016, 115, 18–30. [Google Scholar] [CrossRef]
  29. Just, R.; Kurtz, B.; Ammann, P. Inferring Mutant Utility from Program Context. In Proceedings of the 26th ACM SIGSOFT International Symposium on Software Testing and Analysis (ISSTA’17), Toronto, ON, Canada, 17–21 July 2017; ACM: Copenhagen, Denmark, 2017; pp. 284–294. [Google Scholar]
  30. Gopinath, R.; Ahmed, I.; Alipour, M.A.; Jensen, C.; Groce, A. Mutation Reduction Strategies Considered Harmful. IEEE Trans. Reliab. 2017, 66, 854–874. [Google Scholar] [CrossRef]
  31. Jimenez, M.; Checkam, T.T.; Cordy, M.; Papadakis, M.; Kintis, M.; Traon, Y.L.; Harman, M. Are mutants really natural?: A study on how naturalness helps mutant selection. In Proceedings of the 12th ACM/IEEE International Symposium on Empirical Software Engineering and Measurement (ESEM’18), Oulu, Finland, 11–12 October 2018; ACM: Copenhagen, Denmark, 2018; pp. 1–10. [Google Scholar]
  32. Papadakis, M.; Checkam, T.T.; Traon, Y.L. Mutant Quality Indicators. In Proceedings of the International Conference on Software Testing, Verification and Validation Workshops (ICSTW), Västerås, Sweden, 9–13 April 2018; IEEE: Piscataway, NJ, USA, 2018; pp. 32–39. [Google Scholar] [Green Version]
  33. Jimenez, M.; Checkam, T.T.; Cordy, M.; Papadakis, M.; Kintis, M.; Traon, Y.L.; Harman, M. Predicting the fault revelation utility of mutants. In Proceedings of the 40th International Conference on Software Engineering: Companion Proceeedings (ICSE’18), Gothenburg, Sweden, 27 May–3 June 2018; pp. 408–409. [Google Scholar]
  34. Pizzoleto, A.V.; Ferrari, F.C.; Offutt, J.; Fernandes, L. A systematic literature review of techniques and metrics to reduce the cost of mutation testing. J. Syst. Softw. 2019, 157, 110388. [Google Scholar] [CrossRef]
  35. Silva, R.A.; de Souza, S.; Do, R.S.; de Souza, P.S.L. A systematic review on search based mutation testing. Inf. Softw. Technol. 2017, 81, 19–35. [Google Scholar] [CrossRef]
  36. Jatana, N.; Suri, B.; Rani, S. Systematic Literature Review on Search Based Mutation Testing. e-Inf. Softw. Eng. J. 2017, 11, 59–76. [Google Scholar]
  37. Rodrigues, D.S.; Delamaro, M.E.; Correa, C.G.; Nunes, F.L.S. Using Genetic Algorithms in Test Data Generation: A Critical Systematic Mapping. ACM Comput. Surv. 2018, 51, 41:1–41:23. [Google Scholar] [CrossRef]
  38. Zhu, Q.; Panichella, A.; Zaidman, A. A Systematic Literature Review on how mutation testing supports quality assurance processes. Softw. Test. Verif. Reliab. 2018, 28, e1675. [Google Scholar] [CrossRef]
  39. Souza, F.C.; Papadakis, M.; Durelli, V.H.S.; Delamaro, M.E. Test Data Generation Techniques for mutation testing: A systematic mapping. In Proceedings of the 11th Workshop on Experimental Software Engineering Latin Americal Workshop (ESELAW), Pucón, Chile, 23–25 April 2014; Available online: http://pages.cs.aueb.gr/~mpapad/papers/eselaw2014.pdf (accessed on 8 September 2019).
  40. Baudry, B.; Hanh, V.L.; Jezequel, J.; Traon, Y.L. Building trust into OO components using a genetic analogy. In Proceedings of the 11th International Symposium on Software Reliability Engineering, San Jose, CA, USA, 8–11 October 2000; IEEE: Piscataway, NJ, USA, 2000; pp. 4–14. [Google Scholar]
  41. Baudry, B.; Hanh, V.L.; Traon, Y.L. Testing-for-trust: The genetic selection model applied to component qualification. In Proceedings of the 33rd International Conference on Technology of Object-Oriented Languages, St. Malo, France, 5–8 June 2000; IEEE: Piscataway, NJ, USA, 2000; pp. 108–119. [Google Scholar]
  42. Louzada, J.; Camilo-Junior, C.; Vincenzi, A.; Rodrigues, C. An elitist evolutionary algorithm for automatically generating test data. In Proceedings of the 2012 IEEE Congress on Evolutionary Computation (CEC), Brisbane, Australia, 10–15 June 2012; IEEE: Piscataway, NJ, USA, 2012; pp. 1–8. [Google Scholar] [Green Version]
  43. Subramanian, S.; Natarajan, N. A tool for generation and minimization of test suite by mutant gene algorithm. J. Comput. Sci. 2011, 7, 1581–1589. [Google Scholar] [CrossRef]
  44. Haga, H.; Suehiro, A. Automatic Test Case Generation based on Genetic Algorithm and Mutation Analysis. In Proceedings of the IEEE International Conference on Control System, Computing and Engineering, Penang, Malaysia, 23–25 November 2012; IEEE: Piscataway, NJ, USA, 2012; pp. 119–123. [Google Scholar]
  45. Rani, S.; Suri, B. Implementing Time-Bounded Automatic Test Data Generation Approach Based on Search Based Mutation Testing. In Progress in Advanced Computing and Intelligent Engineering; Springer: Berlin, Germany, 2018; pp. 113–122. [Google Scholar]
  46. Molinero, C.; Nunez, M.; Andres, C. Combining Genetic Algorithms and Mutation Testing to Generate Test Sequences. In Proceedings of the International Work-Conference on Artificial Neural Networks, Salamanca, Spain, 9–12 June 2009; Springer: Berlin, Germany, 2009; pp. 343–350. [Google Scholar]
  47. Nilsson, R.; Offutt, J.; Mellin, J. Test Case Generation for Mutation-based Testing of Timeliness. Electron. Notes Theor. Comput. Sci. 2004, 164, 97–114. [Google Scholar] [CrossRef]
  48. Bottaci, L. A genetic algorithm fitness function for mutation testing. In Proceedings of the International Workshop on Software Engineering, Metaheuristic Innovation Algorithms, Workshop of 23rd International Conference on Software Engineerng, Toronto, ON, Canada, 12–19 May 2001; pp. 3–7. [Google Scholar]
  49. Masud, M.; Nayak, A.; Zaman, M.; Bansal, N. Strategy for mutation testing using genetic algorithms. In Proceedings of the IEEE CCECE CCGEI, Sankatoon, SK, Canada, 1–4 May 2005; IEEE: Piscataway, NJ, USA, 2005; pp. 1049–1052. [Google Scholar]
  50. Mishra, K.K.; Tiwari, S.; Kumar, A.; Misra, A.K. An approach for mutation testing using elitist genetic algorithm. In Proceedings of the 3rd IEEE International Conference on Computer Science Information Technology, Chengdu, China, 9–11 July 2010; IEEE: Piscataway, NJ, USA, 2010; pp. 426–429. [Google Scholar]
  51. Campos, J.; Ge, Y.; Albunian, N.; Fraser, G.; Eler, M.; Arcuri, A. An empirical evaluation of evolutionary algorithms for unit test suite generation. Inf. Softw. Technol. 2018, 104, 207–235. [Google Scholar] [CrossRef]
  52. Almasi, M.M.; Hemmati, H.; Fraser, G.; Eler, M.; Arcuri, A.; Benefelds, J. An Industrial Evaluation of Unit Test Generation: Finding Real Faults in a Financial Application. In Proceedings of the IEEE/ACM 39th International Conference on Software Engineering: Software Engineering in Practice Track (ICSE-SEIP), Buenos Aires, Argentina, 20–28 May 2017; pp. 263–272. [Google Scholar]
  53. Shamshiri, S.; Just, R.; Rojas, J.M.; Fraser, G.; McMinn, P.; Arcuri, A. Do Automatically Generated Unit Tests Find Real Faults? An Empirical Study of Effectiveness and Challenges. In Proceedings of the 30th IEEE/ACM International Conference on Automated Software Engineering (ASE), Washington, DC, USA, 9–13 November 2015; pp. 201–211. [Google Scholar]
  54. Shamshiri, S.; Rojas, J.M.; Gazzola, L.; Fraser, G. Random or Evolutionary Search for Object-Oriented Test Suite Generation? Softw. Test. Verif. Reliab. 2017, 28, 1–29. [Google Scholar] [CrossRef]
  55. Gay, G. Detecting Real Faults in the Gson Library Through Search-Based Unit Test Generation. In Proceedings of the International Symposium on Search Based Software Engineering (SSBSE), Montpellier, France, 8–9 September 2018; Springer: Berlin, Germany, 2018; pp. 385–391. [Google Scholar]
  56. Bashir, M.B.; Nadeem, A. A fitness function for evolutionary mutation testing of object-oriented programs. In Proceedings of the 9th International Conference on Emerging Technology, Islamabad, Pakistan, 9–10 December 2013; IEEE: Piscataway, NJ, USA, 2013; pp. 1–6. [Google Scholar]
  57. Bashir, M.B.; Nadeem, A. Improved Genetic Algorithm to Reduce Mutation Testing Cost. IEEE Access 2017, 5, 3657–3674. [Google Scholar] [CrossRef]
  58. Bashir, M.B.; Nadeem, A. An Experimental Tool for Search-Based Mutation Testing. In Proceedings of the International Conference on Frontiers of Information Technology, Islamabad, Pakistan, 17–19 December 2018; IEEE: Piscataway, NJ, USA, 2018; pp. 30–34. [Google Scholar]
  59. Bashir, M.B.; Nadeem, A. An Evolutionary Mutation Testing System for Java Programs: eMuJava. In Intelligent Computing, Proceedings of the Intelligent Computing—Proceeding of Computing Conference (CompCom’19), London, UK, 16–17 July 2019; Springer: Berlin, Germany, 2019; Volume 998, pp. 847–865. [Google Scholar]
  60. Delgado-Pérez, P.; Medina-Bulo, I. Search-based mutant selection for efficient test suite improvement: Evaluation and results. Inf. Softw. Technol. 2018, 104, 130–143. [Google Scholar] [CrossRef]
  61. Delgado-Pérez, P.; Rose, L.M.; Medina-Bulo, I. Coverage-based quality metric of mutation opertaors for test suite improvement. Softw. Qual. J. 2019, 27, 823–859. [Google Scholar] [CrossRef]
  62. Delgado-Pérez, P.; Medina-Bulo, I.; Segura, S.; Garcia-Dominguez, A.; Jose, J. GiGAn: Evolutionary mutation testing for C++ object-oriented systems. In Proceedings of the Symposium on Applied Computing, Marrakech, Morocco, 3–7 April 2017; ACM: Copenhagen, Denmark, 2017; pp. 1387–1392. [Google Scholar]
  63. Ghiduk, A.S.; El-Zoghdy, S.F. CHOMK: Concurrent Higher-Order Mutants Killing Using Genetic Algorithm. Arab. J. Sci. Eng. 2018, 43, 7907–7922. [Google Scholar] [CrossRef]
  64. Rani, S.; Suri, B. An approach for Test Data Generation based on Genetic Algorithm and Delete Mutation Operators. In Proceedings of the Second International Conference on Advances in Computing and Communication Engineering, Rohtak, Dehradun, India, 1–2 May 2015; IEEE: Piscataway, NJ, USA, 2015; pp. 714–718. [Google Scholar]
  65. Singh, Y. Software Testing; Cambridge University Press: Cambridge, UK, 2012. [Google Scholar]
  66. Untch, R.H. On reduced neighborhood mutation analysis using a single mutagenic operator. In Proceedings of the 47th Annual Southeast Regional Conference, New York, NY, USA, 19–21 May 2009; ACM: Copenhagen, Denmark, 2009; pp. 71:1–71:4. [Google Scholar]
  67. Luke, S. Essentials of Metaheuristics, Lulu. 2009. Available online: https://cs.gmu.edu/~sean/book/metaheuristics/Essentials.pdf (accessed on 8 September 2019).
  68. Chakraborty, U.K.; Janikow, C.Z. An Analysis of Gray versus Binary Encoding in Genetic Search. Inf. Sci. 2003, 156, 253–269. [Google Scholar] [CrossRef]
  69. Gaffney, G.; Green, D.A.; Pearce, C.E.M. Binary versus real coding for genetic algorithm: A false dichotomy? ANZIAM J. 2009, 51, C347–C359. [Google Scholar] [CrossRef]
  70. Varshney, S.; Mehrotra, M. Search-Based Test Data Generator for Data-Flow Dependencies Using Dominance Concepts, Branch Distance and Elitism. Arab. J. Sci. Eng. 2016, 41, 853–881. [Google Scholar] [CrossRef]
  71. Fraser, G.; Wotawa, F. Redundancy Based Test-Suite Reduction. In Proceedings of the 10th International Conference on Fundamental Approaches to Software Engineering, Braga, Portugal, 24 March–1 April 2007; Springer: Berlin, Germany, 2007; pp. 291–305. [Google Scholar] [Green Version]
  72. Scheibenpflug, A.; Wagner, S. An Analysis of the Intensification and Diversification Behavior of Different Operators for Genetic Algorithms. In Proceedings of the International Conference on Computer Aided Systems Theory, Las Palmas de Gran Canaria, Spain, 10–15 February 2013; Springer: Berlin, Germany, 2013; pp. 364–371. [Google Scholar]
  73. Wei, W.; Li, C.M.; Zhang, H. A Switching Criterion for Intensification and Diversification in Local Search for SAT. J. Satisf. Boolean Model. Comput. 2008, 4, 219–237. [Google Scholar]
  74. Yang, X.-S.; Deb, S.; Fong, S. Metaheuristic Algorithms: Optimal Balance of Intensification and Diversification. Appl. Math. Inf. Sci. 2014, 8, 977–983. [Google Scholar] [CrossRef]
  75. Baluja, S.; Caruana, R. Removing the Genetics from the Standard Genetic Algorithm. In Proceedings of the Twelfth International Conference on International Conference on Machine Learning (ICML’95 P), Tahoe City, CA, USA, 9–12 July 1995; Morgan Kaufmann Publishers: Burlington, MA, USA, 1995; pp. 38–46. [Google Scholar] [Green Version]
  76. Guan, B.; Zhang, C.; Ning, J. Genetic algorithm with a crossover elitist preservation mechanism for protein–ligand docking. AMB Express 2017, 7, 174. [Google Scholar] [CrossRef] [PubMed]
  77. Estero-Botaro, A.; Palomo-Lozano, F.; Medina-Bulo, I.; Domínguez-Jiménez, J.J.; García-Domínguez, A. Quality metrics for mutation testing with applications to WS-BPEL compositions. Softw. Test. Verif. Reliab. 2015, 25, 536–571. [Google Scholar] [CrossRef]
  78. EvoSuite—Automated Generation of JUnit Test Suites for Java Classes. Available online: https://github.com/EvoSuite/evosuite/ (accessed on 8 May 2019).
  79. Liang, Y.D. Introduction to Java Programming; Pearson Education Inc.: Upper Saddle River, NJ, USA, 2011. [Google Scholar]
  80. Ammann, P.; Offutt, J. Introduction to Software Testing; Cambridge University Press: Cambridge, UK, 2012. [Google Scholar]
  81. Apache Commons Math. Available online: https://github.com/apache/commons-math (accessed on 8 May 2019).
  82. Smallest Largest. Available online: https://github.com/VMehta99/SmallestLargest/blob/master/SmallestLargest.java (accessed on 8 August 2018).
  83. Software-Artifact Infrastructure Repository. Available online: http://sir.unl.edu/portal/index.php (accessed on 8 May 2019).
  84. Ma, Y.S.; Offutt, J.; Kwon, Y.R. Mujava: An automated class mutation system. Softw. Test. Verif. Reliab. 2005, 15, 97–133. [Google Scholar] [CrossRef]
  85. Deng, L.; Offutt, J.; Li, N. Empirical evaluation of the statement deletion mutation operator. In Proceedings of the 2013 IEEE Sixth International Conference on Software Testing, Verification and Validation, Luxembourg, 18–20 March 2013; IEEE Computer Society: Washington, DC, USA, 2013; pp. 84–93. [Google Scholar]
  86. Delamaro, M.E.; Offutt, J.; Ammann, P. Designing deletion mutation operators. In Proceedings of the 2014 IEEE International Conference on Software Testing, Verification, and Validation, Cleveland, OH, USA, 31 March–4 April 2014; IEEE Computer Society: Washington, DC, USA, 2014; pp. 11–20. [Google Scholar]
  87. Basili, V.R.; Shull, F.; Lanubile, F. Building knowledge through families of experiments. IEEE Trans Softw. Eng. 1999, 25, 456–473. [Google Scholar] [CrossRef]
  88. Patrick, M.; Jia, Y. KD-ART: Should we intensify or diversify tests to kill mutants? Inf. Softw. Technol. 2017, 81, 36–51. [Google Scholar] [CrossRef] [Green Version]
  89. Gonzalez-Hernandez, L.; Offutt, J.; Potena, P. Using Mutant Stubbornness to Create Minimal and Prioritized Test Sets. In Proceedings of the International Conference on Software Quality, Reliability, and Security, Lisbon, Portugal, 16–20 July 2018; IEEE: Piscataway, NJ, USA, 2018; pp. 446–457. [Google Scholar]
Figure 1. Details of mutation operators (adapted from [23]).
Figure 1. Details of mutation operators (adapted from [23]).
Symmetry 11 01145 g001
Figure 2. Illustration of some mutants on a sample program.
Figure 2. Illustration of some mutants on a sample program.
Symmetry 11 01145 g002
Figure 3. Basics of GA (a) basic process, (b) uniform crossover, and (c) mutation.
Figure 3. Basics of GA (a) basic process, (b) uniform crossover, and (c) mutation.
Symmetry 11 01145 g003
Figure 4. Procedural flow of the proposed approach tdgen_gamt.
Figure 4. Procedural flow of the proposed approach tdgen_gamt.
Symmetry 11 01145 g004
Figure 5. Structure of fault matrix used in tdgen_gamt.
Figure 5. Structure of fault matrix used in tdgen_gamt.
Symmetry 11 01145 g005
Figure 6. Illustration of intensification and diversification.
Figure 6. Illustration of intensification and diversification.
Symmetry 11 01145 g006
Figure 7. Step by step procedure for creating the mutants.
Figure 7. Step by step procedure for creating the mutants.
Symmetry 11 01145 g007
Figure 8. Efficiency and cost comparison (a) compared Evosuite to tdgen_gamt, (b) compared Initial random tests to tdgen_gamt.
Figure 8. Efficiency and cost comparison (a) compared Evosuite to tdgen_gamt, (b) compared Initial random tests to tdgen_gamt.
Symmetry 11 01145 g008
Figure 9. Impact of different parameters on mutation score and test generation time. (a,b) population size (c,d) number of iterations and, (e,f) parent selection criteria.
Figure 9. Impact of different parameters on mutation score and test generation time. (a,b) population size (c,d) number of iterations and, (e,f) parent selection criteria.
Symmetry 11 01145 g009
Table 1. Summary of related work in test data generation.
Table 1. Summary of related work in test data generation.
AuthorsYearTool
Available?
SMApproachPFitness
Function
Baudry [40,41]2000No1TMGA-Mutation Score
Masud [49]2005No-TMGA-Botacci Fitness function
Molinero [46]2009No--EGA50Mutation Score
Mishra [50]2010No-TMEGA-Botacci Fitness function
Fraser [9]2012Yes10TMGA100Branch, Mutation Distance
& Mutation Impact
Fraser [10]2015Yes40TMGA100Branch, Mutation Distance
& Mutation Impact
Subramanian [43]2011No21TMGA-Mutation Score
Haga [44]2012No1TMGA-Mutation Score
Louzada [42]2012No3TMEGA-Mutation Score
Bashir [57]2017Yes10TM, CMIGA50State-Based
Fitness Function
Ghiduk [63]2018No4HOMGA10–20Mutation Score
Delgado-Perez [60]2018No8-GA5% *Mutation Quality Based
Fitness Function
This study--14Delete
Mutation
Operators
EGA10 × ITest Case Effectiveness
and its Complexity
in terms of time-steps
Here, S: Number of Subject Programs, M: Type of Mutants, TM: Traditional Mutants, CM: Class Level Mutants, HOM: Higher-Order Mutants, P: Population Size, EGA: Elitist GA, IGA: Improved GA, 5%; *: population size is 5% of number of mutants.
Table 2. A detailed example of how tdgen_gamt works.
Table 2. A detailed example of how tdgen_gamt works.
Initial Population Evaluation
Initial Population # M # K M Mutants KilledMutation ScoreFitnessStatus
T 1 (24)105 M 1 , M 2 , M 3 , M 7 , M 9 5050.125N
T 2 (40)103 M 1 , M 2 , M 9 3030.23R
T 3 (59)102 M 2 , M 9 2020.145R
T 4 (15)102 M 9 , M 6 2020.52R
T 5 (81)101 M 4 1010.23N
T 6 (103)101 M 5 1010.45N
T 7 (33)104 M 6 , M 7 , M 2 , M 1 4040.245N
T 8 (112)101 M 5 1010.100R
Mutation Coverage for Initial Population: 80%, Live Mutants: M 8 , M 10
Begin Iteration 1: Perform Crossover (Intensification)
Selected CasesCrossover Offspring # K M Mutants KilledMutation ScoreFitnessStatus
T 1 (24) C 1 (25)5 M 1 , M 2 , M 3 , M 7 , M 9 5050.234R
T 7 (33) C 2 (32)1 M 8 1010.5N
At the end of Iteration 1: Non-Redundant Test suite (Crossover and Elitist Test Cases)
Initial Population # M # K M Mutants KilledMutation ScoreFitnessStatus
T 1 (24)105 M 1 , M 2 , M 3 , M 7 , M 9 5050.125N
T 5 (81)101 M 4 1010.23N
T 6 (103)101 M 5 1010.45N
T 7 (33)104 M 6 , M 7 , M 2 , M 1 4040.245N
C 2 (32)101 M 8 1010.5N
Mutation Coverage for current Population: 90%, Live Mutants: M 10
Begin Iteration 2: Add 3 more test cases to maintain the size of population
Initial Population # M # K M Mutants KilledMutation ScoreFitnessStatus
T 1 (24)105 M 1 , M 2 , M 3 , M 7 , M 9 5050.125N
T 5 (81)101 M 4 1010.23N
T 6 (103)101 M 5 1010.45N
T 7 (33)104 M 6 , M 7 , M 2 , M 1 4040.245N
C 2 (32)101 M 8 1010.5N
T 9 (56)102 M 2 , M 9 2020.45R
T 10 (78)101 M 8 1010.20R
T 11 (87)101 M 4 1010.30R
Perform Crossover (Intensification)
Selected CasesCrossover Offspring # K M Mutants KilledMutation ScoreFitnessStatus
T 1 (24) C 3 (40)3 M 1 , M 2 , M 9 3030.23R
T 7 (33) C 4 (17)2 M 6 , M 9 2020.55R
Perform Mutation (Diversification)
Crossover CasesMutation Offspring # K M Mutants KilledMutation ScoreFitnessStatus
C 3 (40) M T 1 (44)2 M 5 , M 10 2020.43N
C 4 (17) M T 2 (21)1 M 8 1010.8R
At the end of Iteration 2: Non-Redundant Test suite (Mutation and Elitist Test Cases)
Initial Population # M # K M Mutants KilledMutation ScoreFitnessStatus
T 1 (24)105 M 1 , M 2 , M 3 , M 7 , M 9 5050.125N
T 5 (81)101 M 4 1010.23N
T 7 (33)104 M 6 , M 7 , M 2 , M 1 4040.245N
C 2 (32)101 M 8 1010.5N
M T 1 (44)102 M 5 , M 10 2020.43N
Mutation Coverage for current Population: 100%, No Live Mutants
Here, #M: Number of Non-equivalent Mutants, #KM: Number of Killed Mutants, R: Redundant, N: Non-redundant.
Table 3. Subject programs with their methods under consideration.
Table 3. Subject programs with their methods under consideration.
SPrograms#MethodsConsidered Method#InputsDescription
S1Bessj [78]3bessj2artificial numeric case study
S2EvenOdd [4]1checkEvenOdd1checks a number if even or odd
S3GCD* [79]1gcd2finds the greatest common divisor
S4Power [80]1power2calculates the power of a number
S5Primes [81]2nextPrime1returns the next prime number
S6Quadratic [65]1get_roots3quadratic equation solver
S7Remainder [4]1getRemainder2returns remainder of two numbers
S8SmallestLargest [82]3getMinMax5finds smallest and largest number
S9Stats [80]1computeStats6returns statistics of given numbers
S10StudentDivison [65]1cal_division3returns the division of a student
S11TrashAndTakeOut [80]2trash1performs some calculations
S12Trityp [80]1Triang3returns the type of triangle
S13Tritype2 [83]1Triang3returns the type of triangle
S14Triangle [65]1find_tri_class3returns the type of triangle
Note: #Methods—Total number of methods, Considered Methods- methods considered in this study; however, follows Caller–Callee relationship, #Inputs- number of inputs in considered method, GCD*—Greatest Common Divisor.
Table 4. Description of executable mutants for method under test.
Table 4. Description of executable mutants for method under test.
SLOCODL%SDL%Traditional%
S11531009385
S21910010091
S320938088
S4431008385
S554587655
S64210010086
S7191008678
S8621009090
S930988582
S10368610093
S113710010077
S1253989789
S137310010095
S14441009695
Total % for S1–S14 97%92%87%
Table 5. Description of equivalent and exceptional mutants for method under test.
Table 5. Description of equivalent and exceptional mutants for method under test.
SEquivalent Mutants%Exceptional Mutants%
ODLSDLTraditionalODLSDLTraditional
S10711004
S2004004
S30037209
S400501710
S58171633729
S60010004
S700901413
S80109001
S92850812
S101405002
S110014009
S123310001
S13004002
S14004041
Total % for S1–S142%5%7%1%3%6%
Table 6. GQM oriented research goals.
Table 6. GQM oriented research goals.
ParametersDescription
GoalTo investigate how GA with higher mutation coverage perform to automatically generate the low-cost test suite
QuestionQ1 Is our approach more effective and efficient than Evosuite. How much our approach can improve the Initial Random tests at finding the faults?
Q2 Is the approach stable in killing above 90% mutants?
Q3 How different parameters of the approach impacts the performance?
MetricMutation Score, Number of Hard Mutants, Test Suite Size, Test Case Efficiency
Object of Studytdgen_gamt, Evosuite and Initial Random tests
PurposeMeasure the effectiveness and efficiency of tdgen_gamt and evaluate the improvement in performance over Evosuite and Initial Random tests. To evaluate how much efficient tests are generated.
FocusGenerating the low-cost test data, covering the maximum number of faults
PerspectiveResearcher point of view
ContextFirst Order SDL, ODL and Traditional Method Level Mutants
Table 7. Performance evaluation of tdgen_gamt.
Table 7. Performance evaluation of tdgen_gamt.
SCoverage %TGT* (Seconds)IterationsTSS*Fitness Evaluation
S1100.002.16792
S2100.000.13424
S399.910.8106168
S499.900.796146
S598.620.7228105
S698.005.5289633
S799.600.7106166
S8100.001.2316107
S9100.007.9213117
S10100.000.521160
S1199.060.413599
S1288.1110.23016532
S1396.855.83013574
S1494.249.33015513
Average98.16%3.31410238
* TGT: Test Generation Time, TSS: Test Suite Size.
Table 8. List of mutation operators implemented in Evosuite.
Table 8. List of mutation operators implemented in Evosuite.
S. NoMutation Operator
1.Delete Field
2.Delete Call
3.Insert Unary Operator
4.Replace Arithmetic Operator
5.Replace Bitwise Operator
6.Replace Comparison Operator
7.Replace Constant
8.Replace Variable
Table 9. Effectiveness of test suites.
Table 9. Effectiveness of test suites.
SCoverage Over SDL-ODL Mutants (%)Coverage Over Traditional Mutants (%)
tdgen_gamtEvosuiteInitialtdgen_gamtEvosuiteInitial
S1100.00 ± 0.00096.33 ± 2.53096.69 ± 0.01995.99 ± 0.00598.53 ± 0.08695.05 ± 0.011
(100.00)(96.47)(95.29)(96.00)(98.56)(95.41)
S2100.00 ± 0.000100.00 ± 0.00090.00 ± 0.09490.65 ± 0.00795.35 ± 0.00086.47 ± 0.045
(100.00)(100.00)(91.66)(90.69)(95.35)(86.04)
S399.91 ± 0.00685.91 ± 6.81888.09 ± 0.04792.92 ± 0.01899.88 ± 0.48591.08 ± 0.026
(100.00)(86.36)(90.90)(93.17)(100.00)(91.36)
S499.90 ± 0.00794.40 ± 3.95589.60 ± 0.04396.53 ± 0.007100.00 ± 0.00090.98 ± 0.025
(100.00)(95.00)(90.00)(97.00)(100.00)(91.18)
S598.62 ± 0.02094.14 ± 7.04262.14 ± 0.16288.72 ± 0.02397.46 ± 0.38366.64 ± 0.095
(100.00)(96.55)(62.00)(88.88)(97.53)(66.00)
S698.00 ± 0.00985.85 ± 4.92783.76 ± 0.04783.34 ± 0.05798.10 ± 1.66473.33 ± 0.055
(97.56)(87.80)(82.90)(80.23)(97.67)(72.10)
S799.60 ± 0.01688.67 ± 8.45986.00 ± 0.09098.26 ± 0.00999.83 ± 0.90093.68 ± 0.038
(100.00)(93.33)(86.66)(98.55)(100.00)(94.20)
S8100.00 ± 0.00061.09 ± 8.98795.87 ± 0.02592.42 ± 0.00797.98 ± 3.09293.07 ± 0.016
(100.00)(60.87)(95.65)(92.70)(99.23)(93.48)
S9100.00 ± 0.00088.69 ± 2.53298.59 ± 0.01095.96 ± 0.00699.23 ± 0.90597.00 ± 0.006
(100.00)(88.57)(99.00)(95.91)(99.55)(97.05)
S10100.00 ± 0.00091.62 ± 5.27594.59 ± 0.04369.14 ± 0.04690.98 ± 2.96277.95 ± 0.064
(100.00)(91.89)(94.59)(67.89)(90.20)(76.90)
S1199.06 ± 0.022100.00 ± 0.00073.76 ± 0.13286.99 ± 0.03991.30 ± 0.00068.03 ± 0.092
(100.00)(100.00)(70.58)(87.95)(91.30)(63.77)
S1288.11 ± 0.04962.82 ± 7.83250.79 ± 0.08079.55 ± 0.05290.93 ± 9.43645.67 ± 0.083
(89.47)(64.47)(47.36)(80.70)(94.62)(44.88)
S1396.85 ± 0.01889.53 ± 6.93883.15 ± 0.04490.55 ± 0.02298.94 ± 0.85369.33 ± 0.106
(97.87)(91.49)(82.97)(91.60)(99.30)(67.48)
S1494.24 ± 0.01065.10 ± 2.95685.76 ± 0.05668.62 ± 0.09190.38 ± 4.85866.22 ± 0.081
(93.90)(65.24)(86.58)(65.07)(94.59)(66.36)
Note: Each first row displays average ± standard deviation while second row illustrates median value for 50 runs.
Table 10. Subject program wise stubborn mutants for method under test.
Table 10. Subject program wise stubborn mutants for method under test.
SSDL-ODL Mutants (%)Traditional Mutants (%)
tdgen_gamtEvosuiteInitialtdgen_gamtEvosuiteInitial
S10.00.00.02.61.41.4
S20.00.00.07.04.74.7
S30.00.00.04.30.00.0
S40.00.00.01.00.00.0
S50.00.00.04.02.52.5
S60.00.02.40.60.01.7
S70.00.00.01.40.00.0
S80.00.00.03.80.80.8
S90.01.00.02.30.50.0
S100.00.00.02.02.00.0
S110.00.00.01.48.71.4
S121.31.39.23.63.15.9
S130.00.02.10.70.72.4
S141.26.13.72.65.44.6
Total (%)0.3%1.1%1.9%2.5%1.9%2.1%
Table 11. Efficiency and cost measures.
Table 11. Efficiency and cost measures.
STest Case EfficiencyTest Suite Size
tdgen_gamtEvosuiteInitialtdgen_gamtEvosuiteInitial
S113.7 ± 0.248.9 ± 0.974.8 ± 0.057.0 ± 0.1411.1 ± 1.1220.0 ± 0.00
13.79.04.87.011.020.0
S222.7 ± 0.1819.1 ± 0.008.6 ± 0.454.0 ± 0.005.0 ± 0.0010.0 ± 0.00
22.719.18.64.05.010.0
S315.5 ± 0.4713.1 ± 1.164.6 ± 0.136.0 ± 0.147.7 ± 0.7120.0 ± 0.00
15.612.54.66.08.020.0
S416.2 ± 0.3612.7 ± 0.834.5 ± 0.126.0 ± 0.147.9 ± 0.5020.0 ± 0.00
16.212.54.66.08.020.0
S511.6 ± 0.729.7 ± 0.046.7 ± 0.947.7 ± 0.6110.0 ± 0.0010.0 ± 0.00
11.39.86.68.010.010.0
S69.1 ± 0.249.6 ± 0.362.4 ± 0.189.2 ± 0.3910.2 ± 0.3830.0 ± 0.00
8.99.82.49.010.030.0
S716.6 ± 0.7314.4 ± 0.644.7 ± 0.195.9 ± 0.247.0 ± 0.2820.0 ± 0.00
16.414.34.76.07.020.0
S85.9 ± 0.225.7 ± 0.341.9 ± 0.0315.8 ± 0.6317.2 ± 0.8950.0 ± 0.00
5.85.71.916.017.050.0
S97.4 ± 0.046.1 ± 0.261.6 ± 0.0113.0 ± 0.0016.4 ± 0.7260.0 ± 0.00
7.46.21.613.016.060.0
S106.3 ± 0.417.0 ± 0.422.6 ± 0.2111.0 ± 0.0013.1 ± 0.6430.0 ± 0.00
6.26.92.611.013.030.0
S1118.0 ± 0.9618.3 ± 0.006.8 ± 0.914.8 ± 0.375.0 ± 0.0010.0 ± 0.00
17.718.36.45.05.010.0
S125.1 ± 0.225.2 ± 0.651.5 ± 0.2715.5 ± 1.0117.5 ± 1.3730.0 ± 0.00
5.15.31.5016.017.030.0
S137.1 ± 0.115.2 ± 0.752.3 ± 0.3512.7 ± 0.5019.3 ± 2.3330.0 ± 0.00
7.15.02.213.020.030.0
S144.7 ± 0.625.6 ± 0.452.2 ± 0.2714.7 ± 0.4616.3 ± 0.9330.0 ± 0.00
4.45.62.215.017.030.0
Note: Each first row displays average ± standard deviation while second row illustrates median value for 50 runs.
Table 12. Number of times failed to achieve 100%, above 95%, above 90% mutant coverage (results are recorded in percentage of failure times).
Table 12. Number of times failed to achieve 100%, above 95%, above 90% mutant coverage (results are recorded in percentage of failure times).
S = 100 % M S 95 % M S 90 % M S
S1000
S2000
S3200
S4200
S53640
S68200
S7660
S8000
S9000
S10000
S1116160
S1210010064
S1398200
S14100920
Table 13. Control parameters of tdgen_gamt.
Table 13. Control parameters of tdgen_gamt.
ParametersValue
Initial Population5×Inputs, 10×Inputs, 15×Inputs, 20×Inputs
Fitness Function T C E + 1 / T C C
Parent SelectionFittest 25%, 50%
CrossoverUniform Crossover
MutationOne-Point Mutation
Convergence Criteria100% Mutation Score or Iteration Limit
Iteration Limit30, 50, 100

Share and Cite

MDPI and ACS Style

Rani, S.; Suri, B.; Goyal, R. On the Effectiveness of Using Elitist Genetic Algorithm in Mutation Testing. Symmetry 2019, 11, 1145. https://doi.org/10.3390/sym11091145

AMA Style

Rani S, Suri B, Goyal R. On the Effectiveness of Using Elitist Genetic Algorithm in Mutation Testing. Symmetry. 2019; 11(9):1145. https://doi.org/10.3390/sym11091145

Chicago/Turabian Style

Rani, Shweta, Bharti Suri, and Rinkaj Goyal. 2019. "On the Effectiveness of Using Elitist Genetic Algorithm in Mutation Testing" Symmetry 11, no. 9: 1145. https://doi.org/10.3390/sym11091145

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop