@Test
public void testCloneAndInitialize() {
MockPE prototype = new MockPE();
prototype.setInitMethod("testInitialize");
PrototypeWrapper prototypeWrapper = new PrototypeWrapper(prototype, new WallClock());
assertEquals(0, prototype.getInitializeCount());
MockPE instance = (MockPE)prototypeWrapper.getPE("asd");
assertNotNull(instance);