Package org.jtalks.jcommune.plugin.api.core

Examples of org.jtalks.jcommune.plugin.api.core.ExtendedPlugin


    }

    @Test
    public void testPluginActionForAvailablePluginShouldBeSuccessful()
            throws org.jtalks.common.service.exceptions.NotFoundException {
        ExtendedPlugin plugin = mock(ExtendedPlugin.class);
        HttpServletResponse response = mock(HttpServletResponse.class);
        HttpServletRequest request = mock(HttpServletRequest.class);
        String pluginId = "1";
        when(pluginService.getPluginById(eq(pluginId), any(TypeFilter.class))).thenReturn(plugin);
View Full Code Here

TOP

Related Classes of org.jtalks.jcommune.plugin.api.core.ExtendedPlugin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.