All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.seleniumtests.connectors.extools.uftreports.FallbackUftReport Maven / Gradle / Ivy

There is a newer version: 4.23.18
Show newest version
package com.seleniumtests.connectors.extools.uftreports;

import java.util.ArrayList;
import java.util.List;

import com.seleniumtests.reporter.logger.TestStep;

public class FallbackUftReport extends IUftReport {

	
	public FallbackUftReport(String xmlReport, String scriptName) {
		super(xmlReport, scriptName);
	}

	@Override
	public List readXmlResult() {
		List listStep = new ArrayList<>();
		logger.warn("No UftReport class applies to the following text: " + xmlReport);
		addStepWithoutXml(scriptName, listStep, "No UftReport class applies to the following text: " + xmlReport, null);
		return listStep;
	}

	@Override
	public boolean appliesTo() {
		return true;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy