Testing / Apache JMeter Interview questions
What is a Test Plan in JMeter?
A Test Plan is the root container for everything in a JMeter test - it's the top-level element that holds thread groups, samplers, listeners, and every other component that defines what the test does and how it runs.
It's saved as a .jmx file (an XML-based format), which is what gets shared between team members, checked into version control, or passed to a CI pipeline for automated execution.
Test Plan-level settings, like whether to run thread groups sequentially and whether functional test mode is enabled, apply globally across the whole test rather than being configured per thread group.
More Related questions...
