Package org.camunda.bpm.integrationtest.functional.context.beans

Examples of org.camunda.bpm.integrationtest.functional.context.beans.CalledProcessDelegate


    // this test makes sure the delegate invoked by the called process can be resolved (context switch necessary).

    // we cannot load the class
    try {
      new CalledProcessDelegate();
      Assert.fail("exception expected");
    }catch (NoClassDefFoundError e) {
      // expected
    }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.integrationtest.functional.context.beans.CalledProcessDelegate

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.