SlideShare a Scribd company logo
Decision Testing and Decision Coverage
                     with




Prepare yourself for the ISTQB exam
Dictionary
branch: A basic block that can be selected for execution based on
a program construct in which one of two or more alternative
program paths is available, e.g. case, jump, go to, if-then- else.

branch coverage: The percentage of branches that have been
exercised by a test suite. 100% branch coverage implies both 100%
decision coverage and 100% statement coverage.

branch testing: A white box test design technique in which test
cases are designed to execute branches.




                          From „Standard glossary of terms used in Software Testing”




 Copyright © 2013
Dictionary
decision: A program point at which the control flow has two or
more alternative routes. A node with two or more links to separate
branches.

decision coverage: The percentage of decision outcomes that
have been exercised by a test suite. 100% decision coverage
implies both 100% branch coverage and 100% statement coverage.

decision testing: A white box test design technique in which test
cases are designed to execute decision outcomes.

decision outcome: The result of a decision (which therefore
determines the branches to be taken).




                          From „Standard glossary of terms used in Software Testing”



 Copyright © 2013
What is…?
Decision coverage, related to branch testing, is the
assessment of the percentage of decision outcomes
(e.g. the True and False options of an IF statement) that
have been exercised by a test case suite. Decision
testing derives test cases to execute specific decision
outcomes, normally to increase decision coverage.

Decision testing is a form of control flow testing as it
generates a specific flow of control through the decision
points. Decision coverage is stronger than statement
coverage: 100% decision coverage guarantees 100%
statement coverage, but not vice versa.


                      From „Certified Tester Foundation Level Syllabus (version 2011)”


 Copyright © 2013
Rules!




100% branch coverage implies 100%
decision coverage.

Branch testing = arc testing = algorithm testing



                   From „Certified Tester Foundation Level Syllabus (version 2011)”


Copyright © 2013
Examples with sequential code
sep = az * wn;
csc = dvz + isc + d;

                       There are no decisions to
                                 take.




Copyright © 2013
Examples with IF
IF (vz)
{
  fuf = azh - e;            In order to cover all
}                         decisions and branches,
ic = pcg + icn / n;               you need
                                2 test cases.




Copyright © 2013
Examples with IF ELSE
IF (lfn)
{
  j = ag + vy - f;     In order to cover all
}                    decisions and branches,
ELSE                         you need
{                          2 test cases.
  l = ar * hkh;
}
vgd = i * qla / p;




Copyright © 2013
Examples with SWITCH
SWITCH (i)
{
  CASE 0:                In order to cover all
    krg = z - kz;      decisions and branches,
    break;                     you need
  CASE 1:                    2 test cases.
    tob = zrc * cxd;
    break;
}
rl = gs / dl * s;




Copyright © 2013
Examples with WHILE
uyn = -9;
WHILE (bo || uyn < -3)
{                          In order to cover all
  qx = q - ba / i;       decisions and branches,
  uyn++;                         you need
}                               1 test case.
moa = 4;
WHILE (ei || moa > -3)
{
  h = udi * cj;
  moa--;
}




Copyright © 2013
Examples with FOR
FOR (a = 5; a > -5; a--)
{
  b = c + 1;                 In order to cover all
}                          decisions and branches,
                                   you need
                                  1 test case.




Copyright © 2013
More examples
IF (u)
{
  IF (s)
  {                          In order to cover all
     l = el * n * iq;      decisions and branches,
  }                                you need
  ELSE                           4 test cases.
  {
     fz = ga / ca + vd;
  }
}
ELSE
{
  IF (upd)
  {
     w = tvo / x + y;
  }
  ELSE
  {
     grm = neq + ads;
  }
}
e = lcu + b;


Copyright © 2013
More examples
h = -4;
WHILE (ww || h < 6)
{                            In order to cover all
  zx = 1;                  decisions and branches,
  WHILE (iya || zx > -9)           you need
  {                              1 test cases.
    hm = am * x;
    zx--;
  }
  h++;
}
ye = 7;
WHILE (iob || ye > 2)
{
  boi = nk - u + ijy;
  ye--;
}



Copyright © 2013
More examples
vc = 8;
WHILE (xa || vc > -2)
{                                    In order to cover all
  FOR (i = 0; i < 2; i++)          decisions and branches,
  {                                        you need
    FOR (qgn = 1; qgn > -2; qgn--)       1 test cases.
    {
      p = u * ufi;
    }
  }
  vc--;
}
FOR (ij = -2; ij > -12; ij--)
{
  pqr = n + fdq / jx;
}




Copyright © 2012
More examples with…
TestCompetence allows you to generate sample pseudocode to pracitse whitebox
techniques including statement coverage…




  Copyright © 2013
More examples with…
TestCompetence allows you to generate sample pseudocode to pracitse whitebox
techniques including decision coverage…

                                                                  Choose the
                                                                   maximum
                                                                   number of
     Choose the                                                   instructions
       level of                                                    per level.
        nested
     statements.                                                    Choose the
                                                                       type of
      Choose the                                                     coverage
        type of                                                         from:
      statement.                                                    statement,
                                                                      decision,
                                                                      codition,
                                                                      multiple
                                                                     condition,
    GENERATE                                                       and modified
   your exercise.                                                    condition.



  Copyright © 2013
More examples with…
You get pseudocode and sample answers just like during a regular ISTQB exam.
Choose the right answer.




     Pseudocode




                                                                        Choose
                                                                       an answer.




  Copyright © 2013
More examples with…
You get pseudocode and sample answers just like during a regular ISTQB exam.
Choose the right answer.




     Pseudocode



                                                                      Your answer




                                                                     Right answer




  Copyright © 2013
How to get it…
Visit TestCompetence.com and get one for only…




                     EURO   /                    USD


       Unlimited number of exercises during 24 hours!




Copyright © 2013
Check also examples for…
• Statement testing and coverage >>

• Condition testing and coverage >>

• Multiple condition testing and
  coverage >>

• Modified condition decision
  combination (MC/CD) coverage >>


 Copyright © 2013
Decision Testing and Decision Coverage. ISTQB Whitebox techniques with TestCompetence

More Related Content

What's hot (20)

PPTX
Chapter 4 - Test Design Techniques
Neeraj Kumar Singh
 
PPTX
SOFTWARE TESTING
Priyanka Karancy
 
PPT
Testing fundamentals
Raviteja Chowdary Adusumalli
 
PPT
TDD (Test Driven Design)
nedirtv
 
PPTX
Fundamentals of testing
BugRaptors
 
PPTX
Software testing
Madhumita Chatterjee
 
PPTX
Stlc ppt
Bhavik Modi
 
PPT
Software Testing Process
guest1f2740
 
PDF
Fundamentals of Risk-based Testing
TechWell
 
PPT
Software Testing Fundamentals
Chankey Pathak
 
PDF
What is Test Plan? Edureka
Edureka!
 
PDF
Manual testing interview questions and answers
Testbytes
 
PPTX
Software testing
balamurugan.k Kalibalamurugan
 
PPT
ISTQB / ISEB Foundation Exam Practice - 5
Yogindernath Gupta
 
PPTX
What is sanity testing
pooja deshmukh
 
PDF
Software Testing Life Cycle (STLC) | Software Testing Tutorial | Edureka
Edureka!
 
PPTX
Agile test-management-test-rail-lastest
Onur Baskirt
 
PPT
Automation testing
Biswajit Pratihari
 
PDF
Requierement traceability matrix
Luthfia Ulinnuha
 
PDF
ISTQB Foundation Level Basic
Erol Selitektay
 
Chapter 4 - Test Design Techniques
Neeraj Kumar Singh
 
SOFTWARE TESTING
Priyanka Karancy
 
Testing fundamentals
Raviteja Chowdary Adusumalli
 
TDD (Test Driven Design)
nedirtv
 
Fundamentals of testing
BugRaptors
 
Software testing
Madhumita Chatterjee
 
Stlc ppt
Bhavik Modi
 
Software Testing Process
guest1f2740
 
Fundamentals of Risk-based Testing
TechWell
 
Software Testing Fundamentals
Chankey Pathak
 
What is Test Plan? Edureka
Edureka!
 
Manual testing interview questions and answers
Testbytes
 
ISTQB / ISEB Foundation Exam Practice - 5
Yogindernath Gupta
 
What is sanity testing
pooja deshmukh
 
Software Testing Life Cycle (STLC) | Software Testing Tutorial | Edureka
Edureka!
 
Agile test-management-test-rail-lastest
Onur Baskirt
 
Automation testing
Biswajit Pratihari
 
Requierement traceability matrix
Luthfia Ulinnuha
 
ISTQB Foundation Level Basic
Erol Selitektay
 

Similar to Decision Testing and Decision Coverage. ISTQB Whitebox techniques with TestCompetence (20)

PDF
Condition Determination Testing and Coverage. ISTQB White-box Techniques with...
Radoslaw Smilgin
 
PPTX
Test design techniques: Structured and Experienced-based techniques
Khuong Nguyen
 
PPTX
Rtlws2013
Yutaka Matsuno
 
PDF
Effective and pragmatic test driven development by Andrew Rendell, Principal ...
Valtech UK
 
PDF
White-box Testing: When Quality Really Matters
TechWell
 
PPTX
ScioTalks | Coverage Based Testing
Scio Consulting
 
PPT
Cprogrammingprogramcontrols
teach4uin
 
PDF
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
University of Antwerp
 
PPTX
control statements
Azeem Sultan
 
PPTX
lecture 6 bca 1 year-1.pptx
classall
 
PPTX
SWE-6 TESTING.pptx
prashant821809
 
PDF
Simple rules for building robust machine learning models
Kyriakos Chatzidimitriou
 
PDF
Clean code
Khou Suylong
 
PDF
Tools and techniques of code coverage testing
IAEME Publication
 
DOC
Introduction to specification based test design techniques
Yogindernath Gupta
 
PDF
Core Java Programming Language (JSE) : Chapter IV - Expressions and Flow Cont...
WebStackAcademy
 
PPT
blckboxtesting.ppt il.;io'/ ulio'[ yjko8i[0'-p/ yk
SMayankSharma
 
PPS
Lesson 2....PPT 1
bhushan Nehete
 
PDF
Introduction to computer programming (C)-CSC1205_Lec5_Flow control
ENGWAU TONNY
 
PPT
Testing
nazeer pasha
 
Condition Determination Testing and Coverage. ISTQB White-box Techniques with...
Radoslaw Smilgin
 
Test design techniques: Structured and Experienced-based techniques
Khuong Nguyen
 
Rtlws2013
Yutaka Matsuno
 
Effective and pragmatic test driven development by Andrew Rendell, Principal ...
Valtech UK
 
White-box Testing: When Quality Really Matters
TechWell
 
ScioTalks | Coverage Based Testing
Scio Consulting
 
Cprogrammingprogramcontrols
teach4uin
 
Finding Bugs, Fixing Bugs, Preventing Bugs - Exploiting Automated Tests to In...
University of Antwerp
 
control statements
Azeem Sultan
 
lecture 6 bca 1 year-1.pptx
classall
 
SWE-6 TESTING.pptx
prashant821809
 
Simple rules for building robust machine learning models
Kyriakos Chatzidimitriou
 
Clean code
Khou Suylong
 
Tools and techniques of code coverage testing
IAEME Publication
 
Introduction to specification based test design techniques
Yogindernath Gupta
 
Core Java Programming Language (JSE) : Chapter IV - Expressions and Flow Cont...
WebStackAcademy
 
blckboxtesting.ppt il.;io'/ ulio'[ yjko8i[0'-p/ yk
SMayankSharma
 
Lesson 2....PPT 1
bhushan Nehete
 
Introduction to computer programming (C)-CSC1205_Lec5_Flow control
ENGWAU TONNY
 
Testing
nazeer pasha
 
Ad

More from Radoslaw Smilgin (20)

PDF
Automatyzacja w praktyce. Praktyka automatyzacji
Radoslaw Smilgin
 
PPTX
Accessibility for all platforms and all people
Radoslaw Smilgin
 
PDF
Kwestionowanie ISTQB
Radoslaw Smilgin
 
PDF
Transformacja od formalnego do eksploracyjnego testowania. Moja historia
Radoslaw Smilgin
 
PDF
Testerska edukacja dzisiaj
Radoslaw Smilgin
 
PDF
Tester eksploracyjny. Ostatni zawód na świecie.
Radoslaw Smilgin
 
PPTX
Eksploracja w kulturze Agile i DevOps czyli o zwinnym testowaniu eksploracyjnym
Radoslaw Smilgin
 
PDF
Testy eksploracyjne. Wyższy poziom testowania.
Radoslaw Smilgin
 
PDF
Testy eksploracyjne - podstawy i przykłady
Radoslaw Smilgin
 
PDF
TestingCup 2017 - historia i nowości
Radoslaw Smilgin
 
PPT
60 minut testowania - czyli co tester może osiągnąć w jedną godzinę przy pomo...
Radoslaw Smilgin
 
PDF
TestingCup 2016
Radoslaw Smilgin
 
PDF
Context Driven School of testing w prostych przykładach
Radoslaw Smilgin
 
PDF
TestArena Instrukcja obsługi dla wersji 3.0.929
Radoslaw Smilgin
 
PPTX
Zawód tester - spotkanie z autorem książki
Radoslaw Smilgin
 
PDF
AutoMagicTest – automatyzacja bez kodowania?
Radoslaw Smilgin
 
PDF
Continuous performance management with Gatling
Radoslaw Smilgin
 
PDF
Budowanie biznesu w testerskiej niszy
Radoslaw Smilgin
 
PDF
Zawód testerka. Proste drogi do zawodu.
Radoslaw Smilgin
 
PDF
TestingCup 2015 - prezentacja wprowadzająca do zawodów.
Radoslaw Smilgin
 
Automatyzacja w praktyce. Praktyka automatyzacji
Radoslaw Smilgin
 
Accessibility for all platforms and all people
Radoslaw Smilgin
 
Kwestionowanie ISTQB
Radoslaw Smilgin
 
Transformacja od formalnego do eksploracyjnego testowania. Moja historia
Radoslaw Smilgin
 
Testerska edukacja dzisiaj
Radoslaw Smilgin
 
Tester eksploracyjny. Ostatni zawód na świecie.
Radoslaw Smilgin
 
Eksploracja w kulturze Agile i DevOps czyli o zwinnym testowaniu eksploracyjnym
Radoslaw Smilgin
 
Testy eksploracyjne. Wyższy poziom testowania.
Radoslaw Smilgin
 
Testy eksploracyjne - podstawy i przykłady
Radoslaw Smilgin
 
TestingCup 2017 - historia i nowości
Radoslaw Smilgin
 
60 minut testowania - czyli co tester może osiągnąć w jedną godzinę przy pomo...
Radoslaw Smilgin
 
TestingCup 2016
Radoslaw Smilgin
 
Context Driven School of testing w prostych przykładach
Radoslaw Smilgin
 
TestArena Instrukcja obsługi dla wersji 3.0.929
Radoslaw Smilgin
 
Zawód tester - spotkanie z autorem książki
Radoslaw Smilgin
 
AutoMagicTest – automatyzacja bez kodowania?
Radoslaw Smilgin
 
Continuous performance management with Gatling
Radoslaw Smilgin
 
Budowanie biznesu w testerskiej niszy
Radoslaw Smilgin
 
Zawód testerka. Proste drogi do zawodu.
Radoslaw Smilgin
 
TestingCup 2015 - prezentacja wprowadzająca do zawodów.
Radoslaw Smilgin
 
Ad

Recently uploaded (20)

PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
PDF
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PDF
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PPTX
Neurodivergent Friendly Schools - Slides from training session
Pooky Knightsmith
 
PPTX
How to Set Maximum Difference Odoo 18 POS
Celine George
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PPTX
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
Neurodivergent Friendly Schools - Slides from training session
Pooky Knightsmith
 
How to Set Maximum Difference Odoo 18 POS
Celine George
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 

Decision Testing and Decision Coverage. ISTQB Whitebox techniques with TestCompetence

  • 1. Decision Testing and Decision Coverage with Prepare yourself for the ISTQB exam
  • 2. Dictionary branch: A basic block that can be selected for execution based on a program construct in which one of two or more alternative program paths is available, e.g. case, jump, go to, if-then- else. branch coverage: The percentage of branches that have been exercised by a test suite. 100% branch coverage implies both 100% decision coverage and 100% statement coverage. branch testing: A white box test design technique in which test cases are designed to execute branches. From „Standard glossary of terms used in Software Testing” Copyright © 2013
  • 3. Dictionary decision: A program point at which the control flow has two or more alternative routes. A node with two or more links to separate branches. decision coverage: The percentage of decision outcomes that have been exercised by a test suite. 100% decision coverage implies both 100% branch coverage and 100% statement coverage. decision testing: A white box test design technique in which test cases are designed to execute decision outcomes. decision outcome: The result of a decision (which therefore determines the branches to be taken). From „Standard glossary of terms used in Software Testing” Copyright © 2013
  • 4. What is…? Decision coverage, related to branch testing, is the assessment of the percentage of decision outcomes (e.g. the True and False options of an IF statement) that have been exercised by a test case suite. Decision testing derives test cases to execute specific decision outcomes, normally to increase decision coverage. Decision testing is a form of control flow testing as it generates a specific flow of control through the decision points. Decision coverage is stronger than statement coverage: 100% decision coverage guarantees 100% statement coverage, but not vice versa. From „Certified Tester Foundation Level Syllabus (version 2011)” Copyright © 2013
  • 5. Rules! 100% branch coverage implies 100% decision coverage. Branch testing = arc testing = algorithm testing From „Certified Tester Foundation Level Syllabus (version 2011)” Copyright © 2013
  • 6. Examples with sequential code sep = az * wn; csc = dvz + isc + d; There are no decisions to take. Copyright © 2013
  • 7. Examples with IF IF (vz) { fuf = azh - e; In order to cover all } decisions and branches, ic = pcg + icn / n; you need 2 test cases. Copyright © 2013
  • 8. Examples with IF ELSE IF (lfn) { j = ag + vy - f; In order to cover all } decisions and branches, ELSE you need { 2 test cases. l = ar * hkh; } vgd = i * qla / p; Copyright © 2013
  • 9. Examples with SWITCH SWITCH (i) { CASE 0: In order to cover all krg = z - kz; decisions and branches, break; you need CASE 1: 2 test cases. tob = zrc * cxd; break; } rl = gs / dl * s; Copyright © 2013
  • 10. Examples with WHILE uyn = -9; WHILE (bo || uyn < -3) { In order to cover all qx = q - ba / i; decisions and branches, uyn++; you need } 1 test case. moa = 4; WHILE (ei || moa > -3) { h = udi * cj; moa--; } Copyright © 2013
  • 11. Examples with FOR FOR (a = 5; a > -5; a--) { b = c + 1; In order to cover all } decisions and branches, you need 1 test case. Copyright © 2013
  • 12. More examples IF (u) { IF (s) { In order to cover all l = el * n * iq; decisions and branches, } you need ELSE 4 test cases. { fz = ga / ca + vd; } } ELSE { IF (upd) { w = tvo / x + y; } ELSE { grm = neq + ads; } } e = lcu + b; Copyright © 2013
  • 13. More examples h = -4; WHILE (ww || h < 6) { In order to cover all zx = 1; decisions and branches, WHILE (iya || zx > -9) you need { 1 test cases. hm = am * x; zx--; } h++; } ye = 7; WHILE (iob || ye > 2) { boi = nk - u + ijy; ye--; } Copyright © 2013
  • 14. More examples vc = 8; WHILE (xa || vc > -2) { In order to cover all FOR (i = 0; i < 2; i++) decisions and branches, { you need FOR (qgn = 1; qgn > -2; qgn--) 1 test cases. { p = u * ufi; } } vc--; } FOR (ij = -2; ij > -12; ij--) { pqr = n + fdq / jx; } Copyright © 2012
  • 15. More examples with… TestCompetence allows you to generate sample pseudocode to pracitse whitebox techniques including statement coverage… Copyright © 2013
  • 16. More examples with… TestCompetence allows you to generate sample pseudocode to pracitse whitebox techniques including decision coverage… Choose the maximum number of Choose the instructions level of per level. nested statements. Choose the type of Choose the coverage type of from: statement. statement, decision, codition, multiple condition, GENERATE and modified your exercise. condition. Copyright © 2013
  • 17. More examples with… You get pseudocode and sample answers just like during a regular ISTQB exam. Choose the right answer. Pseudocode Choose an answer. Copyright © 2013
  • 18. More examples with… You get pseudocode and sample answers just like during a regular ISTQB exam. Choose the right answer. Pseudocode Your answer Right answer Copyright © 2013
  • 19. How to get it… Visit TestCompetence.com and get one for only… EURO / USD Unlimited number of exercises during 24 hours! Copyright © 2013
  • 20. Check also examples for… • Statement testing and coverage >> • Condition testing and coverage >> • Multiple condition testing and coverage >> • Modified condition decision combination (MC/CD) coverage >> Copyright © 2013

Editor's Notes

  • #2: Do umieszczenie w: http://www.allinterview.com/showanswers/56878.html http://www.youtube.com/watch?v=cq2lnvjtv3E http://www.youtube.com/watch?v=wLINA-Gj7eA http://www.youtube.com/watch?v=n_K3muzE21w http://www.youtube.com/watch?v=-lmVCXjcukA http://www.youtube.com/watch?v=RhlzjrGgrGU Goldenline (grupy, tematy): ISTQB LinkedIN Groups ISTQB i Whitebox
  • #3: http://www.istqb.org/downloads/finish/20/101.html http://www.istqb.org/downloads/finish/16/15.html
  • #4: http://www.istqb.org/downloads/finish/20/101.html http://www.istqb.org/downloads/finish/16/15.html