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

io.github.EdgeMetric.mammoth.Utils Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package io.github.EdgeMetric.mammoth;

import static io.restassured.RestAssured.given;

import io.restassured.specification.RequestSpecification;
/**
 * Utilization class for common methods.
 * @author Mammoth Analytics
 */
public class Utils {

	public RequestSpecification commonHeader(String token, String accountID) {
		return given()
				.header(Constants.contentType, Constants.appJson)
				.header(Constants.xAPIKey, token)
				.header(Constants.xAccountID, accountID);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy