Monday, 12 August 2013

Structure Based Technique White Box

Structure based testing is a strategy in which testing is based solely on the internal working and structure of the code. Testing is based on the internal paths, structure, and implementation of the software under test (SUT). In contrast to its complement, black box testing, it generally requires detailed programming skills. Structure based testing is commonly referred to as "white box testing". It is also called as "Glass box" or "Clear Box" testing. Process involved in white box testing are follows: Analyze the SUT's implementation and then...

How To use All Pairs Technique Testing

All PairsTesting: It is also known as Pairwise Testing Technique which is a combinatorial software testing method where, for each pair of input parameters to a system, all possible discrete combinations of those parameters are identified and tested. In this method, a set of test cases is generated that covers all combinations of the selected test data values for each pair of variables. It's also referred as 2-way testing. It is also possible to do all triples or all quadruples testing, but the size of the higher order test sets grows very rapidly. This...
Posted on 07:56 | Categories:

Wednesday, 31 July 2013

Technique with examples orthogonal array testing

Orthogonal array testing is combinatorial software testing which uses a systematic, statistical way of deriving test conditions and test cases. It is followed in places where there are a large number of combinations that should be tested and would be risky if we do not test them. Technique: The steps for using orthogonal array technique are: STEP 1: Analyze the given test inputs or requirements and list out the variables that needs to be tested for interaction. STEP 2: Determine the number of choices or values for each variable. STEP 3: Locate...

Tuesday, 30 July 2013

State transition diagram in testing

State Transition Testing Technique: Steps for using state transition testing are: STEP 1: Understand the various states that the system , user, or object can be in, including the initial and final states. Examples of states can be 'User raising a purchase order' or 'leave request is accepted'.  State are represented as, STEP 2: Identify transitions, events, conditions, and actions that can and can't apply in each state. STEP 3: Use a graph or table to model the system. This graph or table also serves as an oracle to predict correct system...

What is State Transition Testing

State Transition Testing: State-Transition diagrams are an excellent tool to capture certain types of system requirements and to document internal system design. These diagrams document the events that come into and are processed by a  system as well as the system's responses. When a system must remember what happened before or when valid and invalid orders of operation exist, then state transition testing could be used. It is useful in situations when workflow modelling or dataflow modelling has been done, which mean that the system moves...

Sunday, 28 July 2013

Decision Table Testing Technique and Examples

Technique followed for decision table testing are follows: STEP 1: Analyze the given test inputs or requirements an list out the various conditions in the decision table. STEP 2: Calculate the number of possible combinations (Rules) STEP 3: Fill columns of the decision table with all possible combinations (Rules) STEP 4: Find out cases where the values assumed by a variable are immaterial for a given combination Fill the same by "don't care" symbol. STEP 5: For each of the combination of values, find out the action or expected result. STEP 6:...

Decision Table General Format

Decision Tables are used to describe and analyze problems that contain procedural decision situations that are characterized by one or more conditions; the state of which determines the execution of a set of actions. They record the complex business rules that a system must implement. This serves as a guide to create Test Conditions. The basic parts of a decision table are shown below: The upper left portion of the format is called the stub quadrant, it contains statements of the conditions. Similarly, the lower left portion is called the action...