Jagger
 All Classes Namespaces Files Functions Variables Groups Pages
Validators

Section provides information about validation of the SUT responses


Validation of SUT responses is provided by Jagger components Validators. They verify responses from the SUT and decide whether responses are valid or not. Every response can be validated by multiple validators. One after another. If one of the validators in the chain sets FAIL status to the response, this request is considered failed. This will affect standard performance metrics: success rate and number of failures.

How to create validator
Create a custom class that implements ResponseValidator
Example: NotNullResponseValidator<Q,E,R>
TODO: add Http validator when ready

How to add validator to your test
Note: you can add multiple validators to the JTestDefinition. They will be executed in the same sequence like they are added