use of org.apache.ignite.internal.binary.test.GridBinaryTestClass2 in project ignite by apache.
the class BinaryObjectBuilderAdditionalSelfTest method testBuildFromObjectWithoutSchema.
/**
* Ensure that object w/o schema can be re-built.
*/
public void testBuildFromObjectWithoutSchema() {
BinaryObjectBuilderImpl binBuilder = wrap(new GridBinaryTestClass2());
BinaryObject binObj = binBuilder.build();
BinaryObjectBuilderImpl binBuilder2 = wrap(binObj);
binBuilder2.build();
}
Aggregations