
com.tibco.flogo.maven.test.dto.Suite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flogo-maven-plugin Show documentation
Show all versions of flogo-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO Flogo.
This is the Maven Plugin for Flogo Build.
The newest version!
package com.tibco.flogo.maven.test.dto;
import java.util.List;
public class Suite implements Comparable{
public String suiteName;
public List testCases;
public SuiteResult suiteResult;
@Override
public int compareTo(Object o) {
return suiteName.compareTo(((Suite)o).suiteName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy