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

arjuna.lib.value.ValueMap Maven / Gradle / Ivy

Go to download

Arjuna-Java is the client implementation in Java for development of test automation using Arjuna. It uses TestNG as the test engine. With minor tweaks, it can be used with any other test engine or custom test automation implementations. Arjuna is a Python based test automation framework developed by Rahul Verma (www.rahulverma.net)

The newest version!
package arjuna.lib.value;

import java.util.List;
import java.util.Map;

import arjuna.tpi.value.Value;

public interface ValueMap {

	Map items() throws Exception;

	Map items(List filterKeys) throws Exception;

	Map strItems() throws Exception;

	Map strItems(List filterKeys) throws Exception;

	Value value(T name) throws Exception;

	String strValue(T key) throws Exception;

	boolean hasKey(T key) throws Exception;

	boolean isEmpty() throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy