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

org.conqat.engine.sourcecode.coverage.TestArtifactUtils Maven / Gradle / Ivy

The newest version!
package org.conqat.engine.sourcecode.coverage;

import org.conqat.engine.resource.util.UniformPathUtils;
import org.conqat.lib.commons.uniformpath.UniformPath.EType;

/** Utility class for working with string based test uniform paths. */
public class TestArtifactUtils {

	/** Returns true if the given path is a test execution artifact. */
	public static boolean isTestExecutionArtifact(String path) {
		return path.startsWith(EType.TEST_EXECUTION.getPrefix() + UniformPathUtils.SEPARATOR);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy