A simple Java API client to connect to HP ALM using REST service.
Create, read, update, and delete entities on the ALM HP platform.
mvn clean install
Here is a simple example that login, returns a test entity and logout from ALM server.
Client client = new Client(new Config("alm.properties"));
client.login();
// Get the test set with specified ID
TestSet testSet = client.loadTestSet("1");
client.logout();
http://alm-help.saas.hpe.com/en/12.50/api_refs/REST_TECH_PREVIEW/ALM_REST_API_TP.html
See LICENSE