
org.jnario.report.Failed 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 java.util.Arrays;
import com.google.common.collect.ImmutableList;
public class Failed extends SpecExecution{
public static Failed failingSpec(String className, String name, double executionTimeInSeconds, SpecFailure... failures){
return new Failed(className, name, executionTimeInSeconds, Arrays.asList(failures));
}
public Failed(String className, String name, double executionTimeInSeconds, Iterable failures) {
super(className, name, executionTimeInSeconds, ImmutableList.copyOf(failures));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy