Package org.mokai.plugin.jpf

Examples of org.mokai.plugin.jpf.JpfPluginMechanism.destroy()


    // check that null is returned when we try to load an unexistent class
    Class<?> nonExistentClass = pluginMechanism.loadClass("non.existent.class");
    Assert.assertNull(nonExistentClass);

    pluginMechanism.destroy();
  }

  @Test
  public void testLoadAcceptorTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
View Full Code Here


    // check that we find the acceptor class in the test plugin
    Set<Class<? extends Acceptor>> acceptorTypes = pluginMechanism.loadTypes(Acceptor.class);
    Assert.assertEquals(1, acceptorTypes.size());
    Assert.assertEquals(acceptorClass, acceptorTypes.iterator().next());

    pluginMechanism.destroy();
  }

  @Test
  public void testLoadActionTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
View Full Code Here

    // check that we find the action class in the test plugin
    Set<Class<? extends Action>> actionTypes = pluginMechanism.loadTypes(Action.class);
    Assert.assertEquals(1, actionTypes.size());
    Assert.assertEquals(actionClass, actionTypes.iterator().next());

    pluginMechanism.destroy();
  }

  @Test
  public void testLoadConnectorTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
View Full Code Here

    // check that we find the receiver class in the test plugin
    Set<Class<? extends Connector>> receiverTypes = pluginMechanism.loadTypes(Connector.class);
    Assert.assertEquals(1, receiverTypes.size());
    Assert.assertEquals(receiverClass, receiverTypes.iterator().next());

    pluginMechanism.destroy();
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.