SilkKDTSetThinkTime Function

Action

The SilkKDTSetThinkTime function sets the think times used between the keyword executions.

Include file

SilkTest.bdh

Syntax

SilkKDTSetThinkTime( sTime : in double ): boolean;

Return value

  • true if successful

  • false otherwise

Parameter Description
sTime The think time used between keyword executions.

Example

dcltrans
  transaction TInit
  begin
    SilkKDTInit();
    SilkTestSetTinkTime(5.0);
  end TInit;
  transaction TTest
  var
    dataset : list of string;
  begin
    SilkKDTExecuteTest("library.zip", "KDTTest", dataset, "KDTTest_Timer");
  end TTest;