![]() |
|
|
Introduction to Black Box Software Testing Techniq |
Post Reply
|
| Author | |
yogindernath
Newbie
Joined: 15 Mar 09 Location: New Delhi Posts: 19 |
Quote Reply
Topic: Introduction to Black Box Software Testing TechniqPosted: 15 Jul 09 at 4:51am |
|
Firstly let us understand the meaning of Black Box Testing. 1) Boundary Value Analysis (BVA) 2) Equivalence Class Testing 4) Cause-Effect Graphing Technique
This testing technique believes and extends the concept that the density of defect is more towards the boundaries. This is done to the following reasons a) Usually the programmers are not able to decide whether they have to use <= operator or < operator when trying to make comparisons. b) Different terminating conditions of For-loops, While loops and Repeat loops may cause defects to move around the boundary conditions.
c) The requirements themselves may not be clearly understood, especially around the boundaries, thus causing even the correctly coded program to not perform the correct way. Strongly typed languages such as Ada and Pascal permit explicit definition of variable ranges. Other languages such as COBOL, FORTRAN and C are not strongly typed, so boundary value testing is more appropriate for programs coded in such languages.
2) Equivalence Class Testing: The use of equivalence classes as the basis for functional testing is appropriate in situations like b) When there is a strong need to avoid redundancy. The above are not handled by BVA technique as we can see massive redundancy in the tables of test cases. In this technique, the input and the output domain is divided into a finite number of equivalence classes. Decision tables are a precise and compact way to model complicated logic. Out of all the functional testing methods, the ones based on decision tables are the most rigorous due to the reason that the decision tables enforce logical rigour. Decision tables are ideal for describing situations in which a number of combinations of actions are taken under varying sets of conditions. 4) Cause-Effect Graphing Technique: This is basically a hardware testing technique adapted to software testing. It considers only the desired external behavior of a system. This is a testing technique that aids in selecting test cases that logically relate Causes (inputs) to Effects (outputs) to produce test cases. A "Cause" represents a distinct input condition that brings about an internal change in the system. An "Effect" represents an output condition, a system transformation or a state resulting from a combination of causes. Read many More Articles & Tutorials on Black Box Testing at: |
|
|
http://www.softwaretestinggenius.com
A Storehouse of Complete Knowledge on Software Testing & QA under one Roof |
|
![]() |
|
tossy
Bronze Member
Joined: 20 Aug 08 Posts: 64 |
Quote Reply
Posted: 15 Jul 09 at 8:29am |
|
Hey u have good collection of Black Box Software Testing Techniques
|
|
![]() |
|
tester
Groupie
Joined: 28 Jun 10 Posts: 46 |
Quote Reply
Posted: 26 Jul 10 at 12:22pm |
|
Hi,
There is another type of black box testing state transition testing A system may exhibit a different response depending on current conditions or previous history (its state). In this case, that aspect of the system can be shown with a state transition diagram. It allows the tester to view the software in terms of its states, transitions between states, the inputs or events that trigger state changes (transitions) and the actions which may result from those transitions. The states of the system or object under test are separate, identifiable and finite in number. A state table shows the relationship between the states and inputs, and can highlight possible transitions that are invalid. |
|
![]() |
|
Post Reply
|
| Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |