Skip to content
Snippets Groups Projects
Commit 08822240 authored by Dmitrii Novikov (EPAM)'s avatar Dmitrii Novikov (EPAM) Committed by Riabokon Stanislav(EPAM)[GCP]
Browse files

Added new version info endpoint (GONRG-2681)

parent 854ab210
No related branches found
No related tags found
2 merge requests!143Master,!130Added new version info endpoint (GONRG-2681)
package org.opengroup.osdu.legal.acceptanceTests;
import org.junit.After;
import org.junit.Before;
import org.opengroup.osdu.legal.util.GCPLegalTagUtils;
public class TestGetInfoApiAcceptance extends GetInfoApiAcceptanceTests {
@Before
@Override
public void setup() throws Exception {
this.legalTagUtils = new GCPLegalTagUtils();
super.setup();
}
@After
@Override
public void teardown() throws Exception {
super.teardown();
this.legalTagUtils = null;
}
}
package org.opengroup.osdu.legal.acceptanceTests;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.opengroup.osdu.legal.util.IBMLegalTagUtils;
public class TestGetInfoApiAcceptance extends GetInfoApiAcceptanceTests {
@Before
@Override
public void setup() throws Exception {
this.legalTagUtils = new IBMLegalTagUtils();
super.setup();
}
@After
@Override
public void teardown() throws Exception {
super.teardown();
this.legalTagUtils = null;
}
@Test
@Override
public void should_return307_when_makingHttpRequest() {
// services are enforced to run in https on OpenShift
}
@Test
@Override
public void should_return401_when_makingHttpRequestWithoutToken() {
// services are enforced to run in https on OpenShift
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment