Follow us on google+

Showing posts with label Black-box testing techniques. Show all posts
Showing posts with label Black-box testing techniques. Show all posts

Sunday, October 18, 2015

Decision Table in Software Testing


It is black-box testing technique, test engineers will use Decision Table  to document the complicated scenarios, the advantage of decision table is it will cover each and every possible conditions and combinations.

Decision table contains two values
1. Conditions
2. Actions

lets discuss decision table with an example.

 In this example i am taking an email login page example for decision table.



 For login to any email application first we need to enter email and password. 

Building decision table for Email and Password

 In the above table "F" indicates the invalid data and "T" indicates the valid data. For the above scenario we have 4 possible conditions .

4 Test cases for above  example: (here iam writing only testcase title)

1.Verify that user should not able to login to the email application with invalid email and invalid password. 
2.Verify that user should not able to login to the email application with valid email and invalid password.
3. Verify that user should not able to login to the email application with invalid email and valid password. 
4. Verify that user should able to login to the email application with valid email and  valid password. 

In the above testcases first 3 test cases are negative testcases and 4th test case is positive test case.

Lets take some complex example.


In this example i am including blank field also, Total 9 combinations are there in this example.
 9 Testcases:
1.Verify that user should not able to login to the email application with blank email and blank password. 
2.Verify that user should not able to login to the email application with blank email and invalid password.
3.Verify that user should not able to login to the email application with blank email and valid password.
4.Verify that user should not able to login to the email application with invalid email and blank password. 
5.Verify that user should not able to login to the email application with invalid email and invalid password. 
6.Verify that user should not able to login to the email application with invalid email and valid password. 
7.Verify that user should not able to login to the email application with valid email and blank password. 
8.Verify that user should not able to login to the email application with valid email and invalid password.  
9.Verify that user should able to login to the email application with valid email and valid password.

In the above test cases First 8 are the negative testcases and 9th test case is positive test case

Tags:

decision table testing example, decision table testing example+istqb, decision table testing,technique+examples,decision table testing simple example, decision table testing questions,decision table testing ppt, decision table testing wiki

Read more ...

Tuesday, August 18, 2015

Black-Box Testing in Software Testing

<<Previous                                                                            Next >>

black-box testing is the testing which is used by the test engineers, In this process test engineers need not to know about the source-code of the functionality/Appliction, testers will test the functionality as per the requirements by applying the following black-box testing techniques
1.Boundary value analysis  (BVA)
4. Error guessing


White-Box Testing in Software Testing:



To do white-box testing test engineer need to have programming knowledge to check the source code of 
the application. Usually black-box testers will not involve in the white-box testing. Depends upon the organisation some organisation have separate white-box testing team, In small organisations senior developers will involve in the white-box testing, so it will vary from one organization to another organization.


Advantages of white-box Testing:

--> Finding syntax errors in the source-code
--> Finding un-used statements 
Techniques used in white box testing:

<<Previous                                                                            Next >>
Read more ...

Black-Box Testing in Software Testing

<<Previous                                                                            Next >>

black-box testing is the testing which is used by the test engineers, In this process test engineers need not to know about the source-code of the functionality/Appliction, testers will test the functionality as per the requirements by applying the following black-box testing techniques
1.Boundary value analysis  (BVA)
4. Error guessing


White-Box Testing in Software Testing:



To do white-box testing test engineer need to have programming knowledge to check the source code of 
the application. Usually black-box testers will not involve in the white-box testing. Depends upon the organisation some organisation have separate white-box testing team, In small organisations senior developers will involve in the white-box testing, so it will vary from one organization to another organization.


Advantages of white-box Testing:

--> Finding syntax errors in the source-code
--> Finding un-used statements 
Techniques used in white box testing:

<<Previous                                                                            Next >>
Read more ...

Black-Box Testing in Software Testing

<<Previous                                                                            Next >>

black-box testing is the testing which is used by the test engineers, In this process test engineers need not to know about the source-code of the functionality/Appliction, testers will test the functionality as per the requirements by applying the following black-box testing techniques
1.Boundary value analysis  (BVA)
4. Error guessing


White-Box Testing in Software Testing:



To do white-box testing test engineer need to have programming knowledge to check the source code of 
the application. Usually black-box testers will not involve in the white-box testing. Depends upon the organisation some organisation have separate white-box testing team, In small organisations senior developers will involve in the white-box testing, so it will vary from one organization to another organization.


Advantages of white-box Testing:

--> Finding syntax errors in the source-code
--> Finding un-used statements 
Techniques used in white box testing:

<<Previous                                                                            Next >>
Read more ...

Monday, January 26, 2015

Boundary value analysis in software Testing

Subscribe To get updates

Enter your email address:


Delivered by qalab
Boundary value analysis in software Testing

Boundary value analysis(BVA):  It is a black-box testing Technique used to cover the boundary conditions in both positive way and negative way.


Example:

Requirement: username filed should take 5 to 8 characters only.
here minimum=5, maximum=8 characters


min=5
min+1=6
min-1=4
max=8
max-1=7
max+1=9

For this Requirement we can write the boundary value analysis testcases like this

Positive Testcases:

1) verify the functionality of username filed by entering 5 characters
2) verify the functionality of username filed by entering 6 characters
3) verify the functionality of username filed by entering 8 characters
4) verify the functionality of username filed by entering 7 characters

Negative Test cases:

1) verify the functionality of username filed by entering 4 characters
2) verify the functionality of username filed by entering 9 characters

 For Equivalence class partition (ECP) click here





















bva testing||bva testing example||bva testing definition||ecp bva testing||bva in testing||bva in testing with example||explain bva in testing||bva testing definition||bva and ecp in testing||bva and ecp in testing with examples||explain bva and ecp||boundary value analysis ||boundary value analysis example||boundary value analysis ppt||boundary value analysis test cases example||boundary value analysis pdf||boundary value analysis (bva)||boundary value analysis in software testing ppt||boundary value analysis problems||boundary value analysis in software engineering||boundary value analysis questions||manual testing interview questions||Narendra Modi||Salman Khan||Katrina Kaif||Deepika Padukone||Alia Bhatt||Priyanka Chopra||Shah Rukh Khan|Sunny Leone|||Poonam Pandey||Virat Kohli1Katrina Kaif||Aishwarya Rai Bachchan||Kareena Kapoor Khan||Anushka Sharma||Shradha Kapoor||Sonakshi Sinha||Sonam Kapoor


Read more ...

Boundary value analysis in software Testing

Subscribe To get updates

Enter your email address:


Delivered by qalab
Boundary value analysis in software Testing

Boundary value analysis(BVA):  It is a black-box testing Technique used to cover the boundary conditions in both positive way and negative way.


Example:

Requirement: username filed should take 5 to 8 characters only.
here minimum=5, maximum=8 characters


min=5
min+1=6
min-1=4
max=8
max-1=7
max+1=9

For this Requirement we can write the boundary value analysis testcases like this

Positive Testcases:

1) verify the functionality of username filed by entering 5 characters
2) verify the functionality of username filed by entering 6 characters
3) verify the functionality of username filed by entering 8 characters
4) verify the functionality of username filed by entering 7 characters

Negative Test cases:

1) verify the functionality of username filed by entering 4 characters
2) verify the functionality of username filed by entering 9 characters

 For Equivalence class partition (ECP) click here





















bva testing||bva testing example||bva testing definition||ecp bva testing||bva in testing||bva in testing with example||explain bva in testing||bva testing definition||bva and ecp in testing||bva and ecp in testing with examples||explain bva and ecp||boundary value analysis ||boundary value analysis example||boundary value analysis ppt||boundary value analysis test cases example||boundary value analysis pdf||boundary value analysis (bva)||boundary value analysis in software testing ppt||boundary value analysis problems||boundary value analysis in software engineering||boundary value analysis questions||manual testing interview questions||Narendra Modi||Salman Khan||Katrina Kaif||Deepika Padukone||Alia Bhatt||Priyanka Chopra||Shah Rukh Khan|Sunny Leone|||Poonam Pandey||Virat Kohli1Katrina Kaif||Aishwarya Rai Bachchan||Kareena Kapoor Khan||Anushka Sharma||Shradha Kapoor||Sonakshi Sinha||Sonam Kapoor


Read more ...

Boundary value analysis in software Testing

Subscribe To get updates

Enter your email address:


Delivered by Selenium99
Boundary value analysis in software Testing

Boundary value analysis(BVA):  It is a black-box testing Technique used to cover the boundary conditions in both positive way and negative way.


Example:

Requirement: username filed should take 5 to 8 characters only.
here minimum=5, maximum=8 characters


min=5
min+1=6
min-1=4
max=8
max-1=7
max+1=9

For this Requirement we can write the boundary value analysis testcases like this

Positive Testcases:

1) verify the functionality of username filed by entering 5 characters
2) verify the functionality of username filed by entering 6 characters
3) verify the functionality of username filed by entering 8 characters
4) verify the functionality of username filed by entering 7 characters

Negative Test cases:

1) verify the functionality of username filed by entering 4 characters
2) verify the functionality of username filed by entering 9 characters

 For Equivalence class partition (ECP) click here





















bva testing||bva testing example||bva testing definition||ecp bva testing||bva in testing||bva in testing with example||explain bva in testing||bva testing definition||bva and ecp in testing||bva and ecp in testing with examples||explain bva and ecp||boundary value analysis ||boundary value analysis example||boundary value analysis ppt||boundary value analysis test cases example||boundary value analysis pdf||boundary value analysis (bva)||boundary value analysis in software testing ppt||boundary value analysis problems||boundary value analysis in software engineering||boundary value analysis questions||manual testing interview questions||Narendra Modi||Salman Khan||Katrina Kaif||Deepika Padukone||Alia Bhatt||Priyanka Chopra||Shah Rukh Khan|Sunny Leone|||Poonam Pandey||Virat Kohli1Katrina Kaif||Aishwarya Rai Bachchan||Kareena Kapoor Khan||Anushka Sharma||Shradha Kapoor||Sonakshi Sinha||Sonam Kapoor


Read more ...
© Copyright 2020 QA LAB All Rights reserved. Designed By QA LAB