use of org.wildfly.clustering.server.group.JGroupsAddressSerializer.JGroupsAddressExternalizer 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