@Test
public void pluginHelpShouldBeSetToDescriptorHelp() throws Exception {
Help help = new Help();
help.getContent().add("help");
PluginDescriptor pluginDescriptor = new PluginDescriptor();
pluginDescriptor.setHelp(help);
PluginTransformer transformer = new PluginTransformer();
Plugin plugin = transformer.toPlugin(pluginDescriptor, getTestPluginURL());
assertEquals(
plugin.getHelp(),
pluginDescriptor.getHelp().getContent().get(0),
"The plugin.help property should be set to the plugin descriptor help."
);
}