Package org.mokai.plugin.jpf

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


  public void testLoadNonExistentType() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // 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();
  }
View Full Code Here


  public void testLoadAcceptorTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that we can load the class
    Class<?> acceptorClass = pluginMechanism.loadClass("org.mokai.acceptor.TestAcceptor");
    Assert.assertNotNull(acceptorClass);

    // 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());
View Full Code Here

  public void testLoadActionTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that we can load the class
    Class<?> actionClass = (Class<?>) pluginMechanism.loadClass("org.mokai.action.TestAction");
    Assert.assertNotNull(actionClass);

    // 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());
View Full Code Here

  public void testLoadConnectorTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that we can load the class
    Class<?> receiverClass = (Class<?>) pluginMechanism.loadClass("org.mokai.connector.TestConnector");
    Assert.assertNotNull(receiverClass);

    // 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());
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.