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

arjuna.lib.value.StringKeyValueMap 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;

public class StringKeyValueMap extends AbstractValueMap{
	
	public StringKeyValueMap() {
		super();
	}
	
	public StringKeyValueMap(List names, List objects){
		super(names, objects);		
	}
	
	public StringKeyValueMap(String[] headers, List objList) {
		super(headers, objList);	
	}

	public StringKeyValueMap(String[] names, Object[] objects){
		super(names, objects);	
	}
	
	public StringKeyValueMap(Map nvMap){
		super(nvMap);	
	}
	
	protected String formatKey(String key) {
		return key.toLowerCase().trim();
	}

	protected String formatKeyAsStr(String key) {
		return key;
	}

}