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

io.toast.tk.runtime.bean.TestEntityProperty Maven / Gradle / Ivy

Go to download

Toast Toolkit Runtime Module contains covers: - Test Source Adapters - Test Parsing - Test Execution - Test Report generation

The newest version!
package io.toast.tk.runtime.bean;

public class TestEntityProperty {

	public final String testName;

	public final String appName;

	public final String entityType;

	public TestEntityProperty(
		final String testName,
		final String appName,
		final String entityType
	) {
		this.testName = testName;
		this.appName = appName;
		this.entityType = entityType;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy