com.tibco.bw.maven.plugin.test.dto.TestCaseResultDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw6-maven-plugin Show documentation
Show all versions of bw6-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO BusinessWorks™.
This is the Maven Plugin for BW6 and BWCE Build.
package com.tibco.bw.maven.plugin.test.dto;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
@SuppressWarnings("serial")
@XmlType
@XmlSeeAlso({AssertionResultDTO.class})
public class TestCaseResultDTO implements Serializable
{
private String testCaseFile;
@SuppressWarnings({ "rawtypes" })
private List assertionResult = new ArrayList();
private int assertions;
private int assertionsRun;
private int assertionFailure;
private int processFailures;
@XmlElement
public String getTestCaseFile()
{
return testCaseFile;
}
public void setTestCaseFile(String testCaseFile)
{
this.testCaseFile = testCaseFile;
}
@SuppressWarnings("rawtypes")
@XmlElement(name="assertionResult")
public List getAssertionResult()
{
return assertionResult;
}
@SuppressWarnings("rawtypes")
public void setAssertionResult(List assertionResult)
{
this.assertionResult = assertionResult;
}
@XmlElement
public int getAssertions()
{
return assertions;
}
public void setAssertions(int assertions)
{
this.assertions = assertions;
}
@XmlElement
public int getAssertionsRun()
{
return assertionsRun;
}
public void setAssertionsRun(int assertionsRun)
{
this.assertionsRun = assertionsRun;
}
@XmlElement
public int getAssertionFailure()
{
return assertionFailure;
}
public void setAssertionFailure(int assertionFailure)
{
this.assertionFailure = assertionFailure;
}
@XmlElement
public int getProcessFailures()
{
return processFailures;
}
public void setProcessFailures(int processFailures)
{
this.processFailures = processFailures;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy