private PluginProxy proxy = null;
@Before
public void setUp() throws Exception {
PluginDef pluginDef = new PluginDef();
pluginDef.setName("PluginName"); //$NON-NLS-1$
pluginDef.setType("PluginType"); //$NON-NLS-1$
Map<String, String> testParams = new HashMap<String, String>();
testParams.put("param1", "value1"); //$NON-NLS-1$ //$NON-NLS-2$
pluginDef.setInitParams(testParams);
MockPluginInterface mockPlugin = new MockPluginInterface(100);
this.proxy = new PluginProxy(pluginDef, mockPlugin);
}