All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jnario.report.Failed Maven / Gradle / Ivy

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