Tuesday, October 15, 2013
What are uses of WiMax technology?
Posted by
Sunflower
at
10/15/2013 10:46:00 PM
0
comments
Labels: Advantages, Application, Benefits, Communication, Connection, Connectivity, Data, Network, Networking, Operation, Process, Range, Requirements, Services, Technology, Uses, WiMax
|
| Subscribe by Email |
|
Saturday, October 12, 2013
What is WiMax technology?
Posted by
Sunflower
at
10/12/2013 02:00:00 PM
0
comments
Labels: Applications, Bandwidth, Communication, Connection, Connectivity, Data, Devices, Network, Networking, Operation, Range, Requirements, Services, Standards, Technology, traffic, Transmit, WiMax, Wireless
|
| Subscribe by Email |
|
Sunday, February 6, 2011
Black-Box Testing Method - Equivalence Partitioning
Equivalence partitioning is a method for deriving test cases.
- It divides the input domain into classes of data from which test cases are derived.
- It strives to define a test case that uncovers classes of errors, thereby reducing the total number of test cases that must be developed.
- Equivalence classes for an input condition is used for test case design.
- An equivalence class represents a set of valid or invalid states for input conditions.
- Input classes are known relatively early in the software process.
- An input condition is either a specific numeric value, range of values, set of related values or a boolean condition.
DEFINING EQUIVALENCE CLASSES FOR TESTING
If an input condition specifies a:
- SPECIFIES RANGE : one valid and two invalid equivalence classes are defined.
- REQUIRES SPECIFIC VALUE : one valid and two invalid equivalence classes are defined.
- SPECIFIES MEMBER OF SET : one valid and one invalid equivalence class are defined.
- BOOLEAN : one valid and one invalid equivalence class are defined.
Posted by
Sunflower
at
2/06/2011 10:26:00 PM
0
comments
Labels: Black box testing, Conditions, Derived, Domain, Equivalence Partitioning, Equivalent, Input, Output, Partition, Range, Software, Software testing, Test cases
|
| Subscribe by Email |
|
Saturday, August 7, 2010
Methods of black box testing - Graph based testing methods and Equivalence Partitioning
Black Box Testing is testing without knowledge of the internal workings of the item being tested. There are four black box testing methods:
Graph-based Testing Methods
Basic idea: A "cause" is an input condition, and an "effect" is a specific sequence of computations to be performed. A cause-effect graph is basically a directed graph that describes the logical combinations of causes and their relationship to the effects to be produced.
- Black-box methods based on the nature of the relationships (links) among the program objects (nodes), test cases are designed to traverse the entire graph.
- A graph is created between the objects and the relationships.
- From the graph, each object relationship is identified and test cases written accordingly to discover the errors.
Equivalence Partitioning
This method divides the input domain of a program into classes of data from which test cases can be derived. It reduces the number of test cases. The guidelines of Equivalence Partitioning are :
- If an input condition specifies a range, one valid and two invalid equivalence classes are defined.
- If an input condition requires a specific value, then one valid and two invalid equivalence classes are defined.
- If an input condition specifies a member of a set, then one valid and one invalid equivalence class are defined.
- If an input condition is boolean, then one valid and one invalid equivalence class are defined.
Posted by
Sunflower
at
8/07/2010 08:49:00 PM
0
comments
Labels: Black box testing, Classes, Domain, Equivalence Partitioning, Graph, Graph based testing, Input, Methods, Objects, Output, Range, Relationships, Software testing, Test cases
|
| Subscribe by Email |
|