public void updateEnablingShouldUpdatePassedPlugin() throws NotFoundException {
long componentId = 25L;
Component component = new Component();
component.setId(componentId);
when(componentService.getComponentOfForum()).thenReturn(component);
PluginActivatingDto pluginActivatingDto = new PluginActivatingDto("Dummy plugin", true);
String expectedStatus = new JsonResponse(JsonResponseStatus.SUCCESS).getStatus().name();
String actualStatus = pluginController.activatePlugin(pluginActivatingDto).getStatus().name();