GetTestNumber

Description

GetTestNumberreturns the number of test the plugin contains.

Syntax

int GetTestNumber(unsigned int& ounTestNb);

Parameters

Output

ounTestNb: number of test the plugin contains.

Return

(int): returns the identification number of the error if an error occurs or 0 if no error occurs.

Example

To get a full example of the API use, download the .Plugin

#define OPT_PLUGIN_NO_ERROR 0
int GetTestNumber(unsigned int& ounTestNb)
{
     ounTestNb = 4;
     return OPT_PLUGIN_NO_ERROR;
}