
org.jnario.report.Pending 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.Passed;
import org.jnario.report.SpecExecution;
import org.jnario.report.SpecFailure;
@SuppressWarnings("all")
public class Pending extends SpecExecution {
public static Passed pendingSpec(final String className, final String name, final double executionTimeInSeconds) {
return new Passed(className, name, executionTimeInSeconds);
}
public Pending(final String className, final String name, final double executionTimeInSeconds) {
super(className, name, executionTimeInSeconds, CollectionLiterals.emptyList());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy