Software Testing Tutorial #36 - Decision Table Testing in Software Testing

  Рет қаралды 39,313

Software Testing Mentor

Software Testing Mentor

Күн бұрын

Пікірлер: 31
@hashcodehub6717
@hashcodehub6717 3 жыл бұрын
Thank you for the video , this is the only valid tutorial on youtube for the decision table :)
@estebanantonio2566
@estebanantonio2566 2 жыл бұрын
Thank you for the example!
@Newagetec
@Newagetec 2 жыл бұрын
Thanks for such clear instructions .
@fluencycommunicationnonsto3242
@fluencycommunicationnonsto3242 3 жыл бұрын
Excellent explanation for beginners. Great job 👍
@RaviKumar-nz2lm
@RaviKumar-nz2lm 2 жыл бұрын
Glass clear explanation...in single time i understood the topic after u explaining..wher as i couldn't able to follow multiple times listening others video on same topic..
@NatashasVocals
@NatashasVocals 3 ай бұрын
I think you are an incredible educator...thank you for sharing your gift...I appreciate everything you have made so much easier for me.
@elnino61
@elnino61 2 жыл бұрын
Thank you
@gyanbaimishra9466
@gyanbaimishra9466 Жыл бұрын
Thank you sir
@thabomoilwa6077
@thabomoilwa6077 5 ай бұрын
Thank you so much, great explanation!
@softwaretestingmentor
@softwaretestingmentor 5 ай бұрын
You're very welcome! Keep watching and sharing.
@ammygill9769
@ammygill9769 11 ай бұрын
Simply THANK YOU
@softwaretestingmentor
@softwaretestingmentor 11 ай бұрын
You're welcome! Keep watching for more videos and tutorials.
@queendragonbee888
@queendragonbee888 8 ай бұрын
OMG THANK YOU!
@softwaretestingmentor
@softwaretestingmentor 8 ай бұрын
Thank you very much. Keep watching and sharing.
@manoj_mafiosi
@manoj_mafiosi 10 ай бұрын
**Notes: Decision Table Testing in Software Testing - Software Testing Tutorial #36** **Introduction:** - Decision Table Testing, also known as Cause-Effect Table Testing, a crucial black-box testing technique for scenarios with multiple conditions. **Example: The Registration Portal Scenario:** - A registration portal with three mandatory fields: Name, Email, and Address. - The goal is to test the portal's success and error messages based on input values. **Creating the Decision Table:** - Use tools like Excel or Confluence to create a Decision Table. - Three input fields: Name, Email, and Address, resulting in eight possible combinations. **Decision Table Breakdown:** - **Scenario 1:** Name (Y), Email (Y), Address (Y) - Success Message: User should receive a success message. - Error Message: None. - **Scenario 2:** Name (N), Email (Y), Address (Y) - Success Message: None. - Error Message: "Name missing." - **Scenario 3:** Name (Y), Email (N), Address (Y) - Success Message: None. - Error Message: "Email missing." - **Scenario 4:** Name (Y), Email (Y), Address (N) - Success Message: None. - Error Message: "Address missing." - **Scenario 5:** Name (N), Email (N), Address (Y) - Success Message: None. - Error Message: "Name and Email missing." - **Scenario 6:** Name (N), Email (Y), Address (N) - Success Message: None. - Error Message: "Name and Address missing." - **Scenario 7:** Name (Y), Email (N), Address (N) - Success Message: None. - Error Message: "Email and Address missing." - **Scenario 8:** Name (N), Email (N), Address (N) - Success Message: None. - Error Message: "Name, Email, and Address missing." **Executing the Tests:** - Each scenario represents a specific test case. - Test each scenario with corresponding inputs and verify expected outcomes. - Error message text should match business requirements or specifications.
@jeyhunaliyev1765
@jeyhunaliyev1765 3 жыл бұрын
great 👍
@softwaretestingmentor
@softwaretestingmentor 3 жыл бұрын
Thanks for the visit
@mollenruziwa8485
@mollenruziwa8485 Жыл бұрын
I tried other channels, you explained this very well and now l understand thank you sir. Can you please do a tutorial on Collapsed DT🙏
@kauserjaffari9790
@kauserjaffari9790 2 жыл бұрын
Hi Manish, greetings from Germany, amazing explanation can you elaborate how to reduce the test cases which has same output . Do you any example of collapsing the decision table thank you :)
@sravansran2109
@sravansran2109 2 жыл бұрын
hey kauser, in above example there are 3 conditions (name, email, address) then we conclude that there 8 possisble outputs (2^3=8), here 2 is sucessful message and error message (true/false)... In nutshell we can't reduce the output (test cases), for sure we need to test all the 8 testcases if it helpfull give me like..😊
@mollenruziwa8485
@mollenruziwa8485 Жыл бұрын
@@sravansran2109 wow thanks hey
@ariana_1343
@ariana_1343 3 жыл бұрын
How did you determine 8 columns are required?
@sravansran2109
@sravansran2109 2 жыл бұрын
In above example there are 3 conditions (name, email, address) then we conclude that there 8 possisble outputs (2^3=8), here 2 is sucessful message and error message (true/false)... if it helpfull give me like..😊
@stephanieprolixity
@stephanieprolixity Жыл бұрын
@@sravansran2109 ​ So, you just put 2 ^ of the number of however many conditions are defined and that’s how you verify how many combinations your table should display to make sure you covered everything?
@ismailolalekan8160
@ismailolalekan8160 Жыл бұрын
Yes
@subhambhakat8494
@subhambhakat8494 2 жыл бұрын
Hi sir, is there any playlist in your channel for learning different chapters for ISTQB testing exam (foundation level). I want to appear for the ISTQB exam but not able to find any suitable content. Please comment if you can help. Thanks,
@softwaretestingmentor
@softwaretestingmentor 2 жыл бұрын
Please visit this full istqb foundation level playlist- kzbin.info/aero/PLL34mf651faPON2szXlzCsTTYl3mh3s-T
@subhambhakat8494
@subhambhakat8494 2 жыл бұрын
@@softwaretestingmentor Thanks sir this is really helpful. This is still valid for 2022 exams right ?
@veliromn
@veliromn Жыл бұрын
could you explain why 8 columns? There was no explanation for that...
@simpledrawings3291
@simpledrawings3291 5 ай бұрын
Yes I was wondering the same thing. Please explain how you got the 8 columns?
@sait5489
@sait5489 4 ай бұрын
There are 3 input conditions, Name, email, address, so there will be 2 power 3 . I.e 8columns will come. If there are 2 input conditions, 2 power 2 I.e 4 columns will come
Software Testing Tutorial #37 - State Transition Testing Technique
12:24
Software Testing Mentor
Рет қаралды 36 М.
Software Testing Tutorial #38 - What is Test Plan in Software Testing
19:19
Software Testing Mentor
Рет қаралды 43 М.
ТАМАЕВ УНИЧТОЖИЛ CLS ВЕНГАЛБИ! Конфликт с Ахмедом?!
25:37
Does size matter? BEACH EDITION
00:32
Mini Katana
Рет қаралды 17 МЛН
decision table explained with example
19:14
Karan Jetli Live
Рет қаралды 94 М.
Software Testing Tutorial #35 - Boundary Value Analysis in Testing
12:59
Software Testing Mentor
Рет қаралды 45 М.
Decision Table Testing-Decision Table In Software Engineering-Decision Table-Software Testing
15:30
Software Testing Tutorial #26 - Smoke Testing Vs Sanity Testing
12:38
Software Testing Mentor
Рет қаралды 44 М.
SE 43 : Black Box Testing | Techniques with Examples
9:19
CS & IT Tutorials by Vrushali 👩‍🎓
Рет қаралды 70 М.