use of org.infinispan.remoting.transport.jgroups.JGroupsAddress in project wildfly by wildfly.
the class JGroupsAddressSerializerTestCase method test.
@Test
public void test() throws IOException {
JGroupsAddress address = new JGroupsAddress(UUID.randomUUID());
new ExternalizerTester<>(new JGroupsAddressExternalizer()).test(address);
new KeyFormatTester<>(new JGroupsAddressKeyFormat()).test(address);
}
Aggregations