use of gov.ca.cwds.data.persistence.cms.VarargPrimaryKey in project API by ca-cwds.
the class CmsDocumentBlobSegmentTest method testGetPrimaryKeyGood.
@Test
public void testGetPrimaryKeyGood() throws Exception {
VarargPrimaryKey pk = new VarargPrimaryKey(docHandle, segmentSequence);
CmsDocumentBlobSegment blob = new CmsDocumentBlobSegment(docHandle, segmentSequence, docBlob);
assertThat(blob.getPrimaryKey().toString(), is(equalTo(pk.toString())));
}
Aggregations