}
@SuppressWarnings("synthetic-access")
public void testInstantiatorStrategy () {
kryo.register(HasArgumentConstructor.class);
kryo.setInstantiatorStrategy(new StdInstantiatorStrategy());
HasArgumentConstructor test = new HasArgumentConstructor("cow");
roundTrip(4, 4, test);
kryo.register(HasPrivateConstructor.class);
test = new HasPrivateConstructor();