@microfocus/alm-octane-test-result-convertion
Version:
A NodeJS library for converting different kinds of test reports into OpenText SDP / SDM format.
12 lines • 804 B
TypeScript
import OctaneBuildConfig from './OctaneBuildConfig';
import { FrameworkType } from '../model/common/FrameworkType';
/**
* Convert JUnit format XML to OpenText SDP / SDM format XML
* @param {string} junitXML - string containing JUnit format XML
* @param {OctaneBuildConfig} octaneBuildConfig - OpenText SDP / SDM build configuration data (eg.: job id, buiild id, server id etc.)
* @param {FrameworkType} framework - Testing framework used to run the automated tests
* @returns {string} - string containing converted XML (returns the OpenText SDP / SDM format XML)
*/
declare const convertJUnitXMLToOctaneXML: (junitXML: string, octaneBuildConfig: OctaneBuildConfig, framework?: FrameworkType) => string;
export default convertJUnitXMLToOctaneXML;
//# sourceMappingURL=junitConvertionService.d.ts.map