Qortex Tools

Testing and QA

Tools for the part of testing that is not writing test cases: checking that a response matches its contract, and producing data adversarial enough to find out. Everything here runs in your browser and needs no account.

What this category covers
  • API contract and response validation
  • Test data generation, including hostile input
  • Boundary values and equivalence partitions
  • Reproducibility of test inputs across runs
2 toolsClient sideNo accountWritten guides

Tools in this category

2 live
Why this category exists

Most testing tools assume your data is well formed

A validator that reports one error at a time. A generator that produces plausible names and valid emails but never an empty string, a right-to-left override, or an integer past what JavaScript can represent. Both are technically correct and practically incomplete, because whoever built them was not trying to break anything.

A green schema test does not mean the integration is safe. It means the response was shaped roughly as expected. Those are different claims.

The tools here are built from the other direction. They report the failures that pass every other check: keys that appear twice and lose half the payload, identifiers that round before validation runs, values that are individually valid and wrong as a set.

Where these fit in a pipeline

Response validation belongs at the API or service boundary, with focused contract checks during pull requests and broader integration validation after deployment. Test data belongs wherever a suite has stopped being able to fail. If you cannot name a realistic change that would turn your contract tests red, they are not testing anything.

Other categories

More coming, slowly and deliberately