assertEquals(actualConfiguration.get(0).getValue(), "102");
}
@Test
public void testApplyConfiguration() throws PluginConfigurationException {
PluginProperty property = new PluginProperty(ORDER_PROPERTY, PluginProperty.Type.INT, "103");
QuestionsAndAnswersPlugin plugin = new QuestionsAndAnswersPlugin();
plugin.applyConfiguration(Arrays.asList(property));
assertEquals(plugin.getConfiguration().size(), 1);
assertEquals(plugin.getConfiguration().get(0).getValue(), "103");