This is an abstract method definition and specifies the adapter function of the individual test case adapter, which understand the test case and knows how to execute it. It has to be implemented in the specialized test classes separetly for each test project.

# S4 method for RTestCase
execAdapter(object, tf.pkg, tf.pkg.i, tf.func,
  tf.func.i, out.fPathPre = NULL, ...)

Arguments

object

(object) The RTestCase-class object

tf.pkg

(character) The package name of the currently executed test function.

tf.pkg.i

(integer) The package iteration number of the currently executed test function.

tf.func

(character) The function name of the currently executed test function.

tf.func.i

(character) The function iteration number of the currently executed test function.

out.fPathPre

(character) Prefix incl. path to output files generated during tests

...

Additional arguments passed to the check function.

Value

(ANY) The cached result of the executed test function.

See also

RTestCase-class