Friday, May 18, 2012
What is meant by pair programming?
Posted by
Sunflower
at
5/18/2012 01:22:00 PM
0
comments
Labels: Advantages, Application, Benefits, Bugs, Code, Compiler, Cost, Defects, Developers, Drawbacks, Drivers, Errors, Observer, Pair, Pair Programming, Programming, Software, Software System, Tasks, Time
![]() | Subscribe by Email |
|
Monday, January 16, 2012
What are different concepts of Pair wise testing?
We all know that we can't test everything. This is particularly appropriate for testing multiple combinations of input parameters. To test all the possible combinations for these parameters would require millions of tests.
- Pair wise testing or all pairs testing is an effective and systematic way to reduce the number of tests.
- The process of integrating this testing technique into test practices can prove to be a boon in saving time and efforts.
- Pair wise testing is also known as all pairs testing.
- Pair wise testing is nothing but a combined form of software testing methodologies or techniques.
- In a typical pair wise testing, all the pairs of input parameters, which are basically software algorithms, are tested in various possible unique combinations.
If the test vectors are chosen carefully, this process can be carried out much faster instead of performing an exhaustive search of all combinations of all the involved parameters and by parallelizing the tests of input parameter pairs.
The number of tests is typically given by the following formula:
O(nm)
Where n is the number of possibilities of first input parameter with most choices and m is the number of possibilities for the second input parameter with the most choices.
Reason of pair wise testing
- The pair wise testing is based on a certain reason.
- Even a simplest or primitive bug or error can cause havocs to the program.
- The petty errors are caused unknowingly by an input parameter.
- Other bugs and errors are a result of interaction between the various pairs of parameters.
- All these kind of bugs and errors can be arrested with the help of pair wise testing.
- Bugs and errors involving the interactions between three or more parameters are progressively less common in occurrence, but at the same time they are progressively more expensive to be found out by carrying out the exhaustive testing, which has its limit as the exhaustive testing of all possible inputs.
Many testers and software developers consider the pairs wise testing of a software system or subsystem or an application as a reasonable and efficient cost-benefit compromise between higher-order testing methods or techniques that can be combined and used, and less exhaustive methods or techniques which fail to exercise all the possible pairs of input parameters.
Since it is not possible for any testing technique or methodology to find out all the bugs and errors, pairs wise testing is typically used together with other testing methods and software quality assurance techniques and methodologies such as:
- Unit testing
- Symbolic execution
- Code review and
- Fuzz testing
Advantages of Pair Wise testing
- The best advantage of pair wise testing is that pair wise test cases give over 90 percent of coverage.
- In a research the pair wise testing was compared with the random input testing and it was found that pair wise testing provided better coverage.
- The block coverage obtained by pair wise testing has always been found to be comparable with the block coverage achieved by the exhaustive testing by testing all the possible factor combinations.
- Pair wise testing is actually based up on the fact that most faults are caused by interactions mostly between two factors.
- Pair wise generated test suites are quite effective in covering all the possible combinations of two parameters and therefore are much smaller than exhaustive test suites and still very effective in discovering defects.
Necessary condition for pair wise testing: - For each pair of input parameters, all the combinations of valid values of these two parameters should be covered.
- To test a small number of input parameters can result in a combinatorial explosion of a large number of possible permutations.
- Pair wise testing is to reduce the combinations to a more small and manageable size and provide effective fault detection.
Posted by
Sunflower
at
1/16/2012 03:10:00 PM
0
comments
Labels: Advantages, Application, Bugs, Combinations, Conditions, Defects, Errors, Exhaustive, Input, Necessary, Pair, Pair wise testing, Parameters, Quality, Software testing, Techniques, Test cases, Tests
![]() | Subscribe by Email |
|
Saturday, July 30, 2011
Black Box Testing Technique - Orthogonal Array Testing (OATS)
Orthogonal array testing enables you to design test cases that provide maximum test coverage with reasonable number of test cases. This type of testing can be applied to problems which has relatively small input domain but too large to accommodate exhaustive testing. Orthogonal array testing is more suitable in finding errors associated with faulty logic within a software component.
Orthogonal arrays are two dimensional arrays of numbers which possess the interesting quality that by choosing any two columns in the array you receive an even distribution of all the pair-wise combinations of values in the array.
The benefits of orthogonal array testing includes:
- lower execution time.
- lower implementation time.
- code coverage is high.
- overall productivity increases.
- the analysis of results take less time.
Orthogonal array testing uses the following terminology:
- Runs are the number of rows in an array.
- Factors are the number of columns in an array.
- Levels are the maximum number of values that can be taken on by any single factor.
Orthogonal array testing (OAT) helps in optimizing testing by creating an optimized test suite, detects all kind of faults, guarantees the testing of pair wise combinations, less prone to errors, simpler to generate and is independent of platforms and domains.
Posted by
Sunflower
at
7/30/2011 10:40:00 PM
0
comments
Labels: Arrays, Benefits, Black box testing, Columns, Design, Dimensions, Domain, Efficiency, Errors, OAT, Orthogonal Array testing, Pair, Productivity, Quality, Rows, Software testing, Test cases
![]() | Subscribe by Email |
|