Validates test input files using the validator program. Supports validation by testset, group, or single test.
Target specification (testset name or 'all')
Optional
Optional modifier (group name or test index)
If Config.json is invalid or missing validator
If validator compilation fails
If validator rejects any test
// From CLI: polyman validate allawait validateTestsAction('all');// Validates all testsets Copy
// From CLI: polyman validate allawait validateTestsAction('all');// Validates all testsets
// From CLI: polyman validate testsawait validateTestsAction('testsets');// Validates testset named 'testsets' Copy
// From CLI: polyman validate testsawait validateTestsAction('testsets');// Validates testset named 'testsets'
// From CLI: polyman validate tests samplesawait validateTestsAction('testsets', 'samples');// Validates group 'samples' in testset 'testsets' Copy
// From CLI: polyman validate tests samplesawait validateTestsAction('testsets', 'samples');// Validates group 'samples' in testset 'testsets'
// From CLI: polyman validate tests 5await validateTestsAction('testsets', '5');// Validates test 5 in testset 'testsets' Copy
// From CLI: polyman validate tests 5await validateTestsAction('testsets', '5');// Validates test 5 in testset 'testsets'
Validates test input files using the validator program. Supports validation by testset, group, or single test.