use of com.iggroup.oss.sample.domain.Sample in project RESTdoclet by IG-Group.
the class AbstractSampleServiceTest method testUpdateSample.
/**
* Success test case for updateSample
*/
@Test
public void testUpdateSample() {
try {
Sample sample = service.getSampleByReference("00001");
sample.setName("New name");
service.updateSample(sample);
} catch (Exception e) {
assertTrue(false);
}
}
Aggregations