use of io.codekvast.javaagent.model.v1.CodeBaseEntry in project codekvast by crispab.
the class CodeBaseEntry2Test method should_transform_from_v1_format.
@SuppressWarnings("deprecation")
@Test
public void should_transform_from_v1_format() {
CodeBaseEntry e1 = CodeBaseEntry.sampleCodeBaseEntry();
CodeBaseEntry2 e2 = CodeBaseEntry2.sampleCodeBaseEntry();
assertThat(CodeBaseEntry2.fromV1Format(e1), is(e2));
}
Aggregations