blob: 34fc2b1e7555acf2aa65ab79864d50e496bc5ebf [file] [log] [blame]
package org.eclipse.om2m.adn.tests;
import static org.junit.Assert.*;
import org.eclipse.om2m.adn.tools.HttpResponse;
import org.eclipse.om2m.adn.tools.RestHttpClient;
import org.junit.Test;
public class CSEBase extends TestConfig {
@Test
public void testRetreive() {
HttpResponse httpResponse = RestHttpClient.get(originator, csePoa+"/~/"+cseId+"/"+cseName);
assertEquals(200, httpResponse.getStatusCode());
}
}