Does anyone know what Geode API(s) I should use instead of Apache Geode SerializationUtils to change the following test to use Geode DataSerializers?
@Test public void serializesAndDeserializes() throws Exception { PartitionRegionConfig config = new PartitionRegionConfig(prId, path, partitionAttributes, scope, evictionAttributes, regionIdleTimeout, regionTimeToLive, entryIdleTimeout, entryTimeToLive, gatewaySenderIds); byte[] bytes = SerializationUtils.serialize(config); assertThat(bytes).isNotNull().isNotEmpty(); assertThat(SerializationUtils.deserialize(bytes)).isNotSameAs(config).isInstanceOf(PartitionRegionConfig.class); }