Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

package gov.va.med.pbm.ampl.fhir.client;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

/**
* The AbstractFhirClientTest class is a junit test class.
*
* @author Ian Meinert
*
*/
public class AbstractFhirClientTest {

/**
* Before testing, set up.
*
* @throws Exception Exception
*/
@Before
public void setUp() throws Exception {
}

/**
* After testing, tear down.
*
* @throws Exception Exception
*/
@After
public void tearDown() throws Exception {
}

/**
* The test.
*/
@Test
public void test() {
// fail("Not yet implemented");
}
}