Package org.tomighty.plugin.impl

Examples of org.tomighty.plugin.impl.DefaultPluginPackFactory


public class PluginPackFactoryTest {

    @Test
    public void createDoesNotReturnNull() {
        PluginPackFactory factory = new DefaultPluginPackFactory();
        Directory directory = mock(Directory.class);
        PluginPack pluginPack = factory.createFrom(directory);

        assertNotNull(pluginPack);
    }
View Full Code Here

TOP

Related Classes of org.tomighty.plugin.impl.DefaultPluginPackFactory

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.