UnitTestHarness
1.0
Unit Testing Tool
|
Finds which tests to run by parsing the unitTestConfiguration XML file. If the tests are not specified in the configuration file then uses fwUnitTestComponentTestDiscovery to discover the tests. More...
Functions | |
void | fwUnitTestComponentParseConfigurationXml_getTestsToRun (string configPathName, mapping &testsToRun) |
private void | fwUnitTestComponentParseConfigurationXml_recurseXmlConfig (int configXmlFile, int node, mapping &testsToRun) |
private void | fwUnitTestComponentParseConfigurationXml_recurseComponentBlock (int configXmlFile, int node, mapping &testsToRun) |
private void | fwUnitTestComponentParseConfigurationXml_recurseSuiteBlock (int configXmlFile, int node, mapping &testSuites, string componentName) |
private void | fwUnitTestComponentParseConfigurationXml_recurseTestCaseBlock (int configXmlFile, int node, dyn_string &testCases) |
Finds which tests to run by parsing the unitTestConfiguration XML file. If the tests are not specified in the configuration file then uses fwUnitTestComponentTestDiscovery to discover the tests.
void fwUnitTestComponentParseConfigurationXml_getTestsToRun | ( | string | configPathName, |
mapping & | testsToRun | ||
) |
[in] | configPathName | string |
[out] | testsToRun | mapping, key= component name, value=(mapping key = suitesToRun, value = test cases to run) |
private void fwUnitTestComponentParseConfigurationXml_recurseComponentBlock | ( | int | configXmlFile, |
int | node, | ||
mapping & | testsToRun | ||
) |
[in] | configXml | int, The unitTestConfiguration document ID. |
[in] | node | int, The ID of the current XML node. |
[out] | testsToRun | mapping, key= component name, value=(mapping key = suitesToRun, value = test cases to run) |
private void fwUnitTestComponentParseConfigurationXml_recurseSuiteBlock | ( | int | configXmlFile, |
int | node, | ||
mapping & | testSuites, | ||
string | componentName | ||
) |
[in] | configXml | int, The unitTestConfiguration document ID. |
[in] | node | int, The ID of the current XML node. |
[out] | testsToRun | mapping, key= component name, value=(mapping key = suitesToRun, value = test cases to run) |
private void fwUnitTestComponentParseConfigurationXml_recurseTestCaseBlock | ( | int | configXmlFile, |
int | node, | ||
dyn_string & | testCases | ||
) |
[in] | configXml | int, The unitTestConfiguration document ID. |
[in] | node | int, The ID of the current XML node. |
[out] | testsToRun | mapping, key= component name, value=(mapping key = suitesToRun, value = test cases to run) |
private void fwUnitTestComponentParseConfigurationXml_recurseXmlConfig | ( | int | configXmlFile, |
int | node, | ||
mapping & | testsToRun | ||
) |
[in] | configXml | int, The unitTestConfiguration document ID. |
[in] | node | int, The ID of the current XML node. |
[out] | testsToRun | mapping, key= component name, value=(mapping key = suitesToRun, value = test cases to run) |