Publishes the UNIT reports of all configured ecu.test packages or projects in this job.
These UNIT reports are generated automatically in this post-build step.

Pipeline usage
Signatures:
publishUNIT(String toolName, double unstableThreshold, double failedThreshold) : void
            
publishUNIT(ETInstallation installation, double unstableThreshold, double failedThreshold, boolean allowMissing, boolean runOnFailed) : void
            
ETInstance.publishUNIT(double unstableThreshold, double failedThreshold, boolean allowMissing, boolean runOnFailed) : void
            
ETInstance.publishUNIT(Map<String, Object> settings) : void
            
Examples:
publishUNIT('ecu.test', 10, 20)
            
def instance = ET.installation('ecu.test')
publishUNIT installation: instance.installation, unstableThreshold: 10, failedThreshold: 20
            
def instance = ET.newInstallation('ecu.test', 'C:\\Program Files\\ECU-TEST 8.0')
instance.publishUNIT()
            
def instance = ET.newInstallation toolName: 'ecu.test', installPath: C:\\Program Files\\ECU-TEST 8.0'
instance.publishUNIT unstableThreshold: 10, failedThreshold: 20, allowMissing: true, runOnFailed: true