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

tech.grasshopper.reporter.tests.TestIndent Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package tech.grasshopper.reporter.tests;

public interface TestIndent {

	public default int calculateIndent(int testLevel, int maxTestLevel) {
		return testLevel < maxTestLevel ? testLevel : maxTestLevel;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy