Commit c0d46184 by Dinh Thanh Truc

Update BasicTesting

parent 1f9dfe0f
......@@ -4,10 +4,13 @@
3.Experience-based testing:it is based on the experience of technical, business and similar systems
4.Gray-box testing: have some knowledge of the internal structure but not in detailed to design test cases and test the application from the outside
## Simple techniques
>Specfication-based testing (black box):
>1.Equivalence partitioning:divide a set of test conditions into groups or sets that can be considered the same ( the system handle them equivalently). We need test only one condition from each partition. If one in a parttion does not work, we assume none in that partition work. You may try more than one value from a partition.
> Ex:Test the software that calculate the interest due, identify the range of balance values that earn the different rates of interest. $0-$100: 3% interest rate, $100-$1000: 5% interest rate, >=1000$: 7% interest rate.
> Invalid partition Valid (3%) Valid(5%) Valid(7%)
> -$0.01 $0.00-$100.00 $100.01-$999.99 $1000.00
-Specfication-based testing (black box):
1.Equivalence partitioning:divide a set of test conditions into groups or sets that can be considered the same ( the system handle them equivalently). We need test only one condition from each partition. If one in a parttion does not work, we assume none in that partition work. You may try more than one value from a partition.
Ex:Test the software that calculate the interest due, identify the range of balance values that earn the different rates of interest. $0-$100: 3% interest rate, $100-$1000: 5% interest rate, >=1000$: 7% interest rate.
Invalid partition Valid (3%) Valid(5%) Valid(7%)
-$0.01 $0.00-$100.00 $100.01-$999.99 $1000.00
- White box
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment