Veröffentlicht die UNIT-Reports aller in diesem Job konfigurierten ECU-TEST-Packages bzw. -Projekte.
Die UNIT-Reports werden automatisiert in diesem Post-Buildschritt generiert.

Verwendung in Pipelines
Signaturen:
publishUNIT(String toolName, double unstableThreshold, double failedThreshold) : void
            
publishUNIT(ETInstallation installation, double unstableThreshold, double failedThreshold, boolean archiving, boolean keepAll) : void
            
ETInstance.publishUNIT(double unstableThreshold, double failedThreshold, boolean archiving, boolean keepAll) : void
            
Beispiele:
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()