SetSilentTestRun

Top  Previous  Next

Continues the test, but sets the test to silent, so that no test results are displayed in the summary report.

 

Test results can be filtered in the after test script using the abortTest or SetSilentTestRun functions.

 

Syntax

 

SetSilentTestRun( true/false )

 

Parameters

true or false

 

 

 

Example

IF test.totalTrades < tradesThreshold THEN

 test.SetSilentTestRun( true )

 PRINT "Filtered test ", test.currentParameterTest, " because total trades of ", test.totalTrades, " were less than threshold of ", tradesThreshold

ENDIF