
org.jnario.report.Passed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jnario.standalone Show documentation
Show all versions of org.jnario.standalone Show documentation
The required libraries to execute Jnario specifications without Eclipse.
The newest version!
package org.jnario.report;
import org.eclipse.xtext.xbase.lib.CollectionLiterals;
import org.jnario.report.SpecExecution;
import org.jnario.report.SpecFailure;
@SuppressWarnings("all")
public class Passed extends SpecExecution {
public static Passed passingSpec(final String className, final String name, final double executionTimeInSeconds) {
return new Passed(className, name, executionTimeInSeconds);
}
public Passed(final String className, final String name, final double executionTimeInSeconds) {
super(className, name, executionTimeInSeconds, CollectionLiterals.emptyList());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy