Reference

Testing Techniques Library

48 core techniques below, plus 29 agile-specific techniques — 77 total. Every entry maps to ISTQB and tells you which career level it belongs to.

Filter by level: Grad Junior Senior Test Lead 77 techniques documented
Start Here

Popular & Most Practical

The five pages NZ testers return to most — whether job-hunting, on a live project, or building a portfolio.

Risk-Based TestingMost practical

The technique NZ test leads use every sprint to prioritise what matters most.

Exploratory TestingMost used

The bread-and-butter of every working tester — structured freedom to find what scripted tests miss.

Boundary Value AnalysisMost tested in interviews

The most common technique in ISTQB exams and NZ QA job interviews.

API TestingHighest demand

The skill NZ employers ask for most in job ads. Every modern system has an API.

QA Career ToolkitCareer

CV, portfolio, interview prep, and salary guidance — all NZ-specific.

ISTQB Ch. 4.2

Black Box Techniques

Specification-based. Tests what the system does — no knowledge of internal code required.

Black Box

Equivalence Partitioning

Divide inputs into groups where all values should behave identically. Test one value per group instead of every value.

Junior Senior
ISTQB CTFL 4.2.1
Black Box

Boundary Value Analysis

Test the edges of equivalence partitions. Most bugs hide at the boundary — at, just below, and just above the limit.

Junior Senior
ISTQB CTFL 4.2.2
Black Box

Decision Table Testing

Map every combination of conditions to expected outcomes. Essential for complex business logic with multiple rules.

Junior Senior
ISTQB CTFL 4.2.3
Black Box

State Transition Testing

Model a system as a set of states and transitions. Ensure every valid path is tested and invalid transitions are rejected.

Junior Senior
ISTQB CTFL 4.2.4
Black Box

Use Case Testing

Derive test cases from use case flows — happy path, alternate paths, and exception flows — from the user’s perspective.

Junior Senior
ISTQB CTFL 4.2.5
Black Box

Cause-Effect Graphing

Visual technique that maps causes (inputs/conditions) to effects (outputs/actions). Systematic predecessor to decision tables.

Senior
ISTQB CTFL 4.4 · CTAL-TA 3.3
Black Box

Pairwise / Combinatorial

Test all possible pairs of input parameters rather than every combination. Dramatically reduces test count while maintaining coverage.

Senior Test Lead
ISTQB CTFL 4.4.3 · CTAL-TA 3.4
Black Box

Domain Analysis

Advanced extension of EP and BVA — analyses input/output domains together to find inter-variable dependencies.

Senior
ISTQB CTAL-TA 3.2
ISTQB Ch. 4.3

White Box Techniques

Structure-based. Tests how the system works — requires visibility into code or architecture.

ISTQB Ch. 4.4

Experience-Based Techniques

Skill and intuition-driven. Not a replacement for systematic testing — a complement to it.

ISTQB CTAL-TM · Senior & Lead

Management & Process Techniques

The skills that scale a team: planning, estimating, prioritising, and improving.

Non-functional & Structural

Accessibility, API & Security Testing

Testing qualities beyond functional correctness: security, accessibility, and API contracts.

🚀
Practices & Frameworks

Agile Techniques Library

22 agile practices from Scrum to SAFe — ceremonies, planning, XP engineering practices, agile testing, and scaling frameworks.

Certification path

ISTQB mapped
to every level

Each level in this bootcamp aligns to an ISTQB certification. The library technique pages show you exactly which syllabus section covers each concept.

Grad + Junior
ISTQB CTFL v4.0
Study guide →
Senior
ISTQB CTAL-TA v4.0
Study guide →
Test Lead
ISTQB CTAL-TM v3.0
Study guide →
Standards & Certification Mapping

This library maps to multiple industry standards beyond ISTQB. BBST (Black Box Software Testing) by Cem Kaner covers exploratory and specification-based techniques in depth. The Ministry of Testing community curates practical technique guides aligned with real-world practitioner experience. The CSTE (Certified Software Tester) qualification from the Quality Assurance Institute covers many of the management and process techniques in this library. Use these alongside ISTQB for a well-rounded certification portfolio.

Technique quick comparison

Use this as a starting point when choosing between techniques. Every project is different — treat this as a guide, not a rulebook.

Technique Best for Watch out for Effort Level
Boundary Value AnalysisNumeric ranges, thresholds, date limitsMisses non-boundary logic bugsLowJunior+
Equivalence PartitioningInput classification, eligibility rules, categoriesPartitions can be wrong if spec is ambiguousLowJunior+
Decision Table TestingComplex business rules, multi-condition logicCombination explosion with many conditionsMediumJunior+
State Transition TestingWorkflows, lifecycle management, order statesState diagrams must be accurate to be usefulMediumJunior+
Exploratory TestingAmbiguous requirements, unknown risk, new featuresHard to demonstrate coverage to auditorsMediumJunior+
Error GuessingExperienced testers, edge cases, tight timelinesDepends heavily on tester experienceLowSenior+
Risk-Based TestingTime pressure, regulated systems, large scopeRisk misjudgements affect what gets testedMediumSenior+
API TestingMicroservices, integrations, mobile backendsUI-only teams lack the skills to startMediumJunior+
Accessibility TestingGovernment sites (mandatory), public portalsAutomated tools only catch ~30% of issuesMediumAll levels
Test PlanningLarge programmes, regulated delivery, new teamsOver-planning on small projects wastes timeMedium–HighLead+