Package com.foreach.across.test.modules.exposing

Examples of com.foreach.across.test.modules.exposing.ExposingModule


public class TestAcrossContext
{
  @Test
  public void getModuleByName() {
    TestModule1 module = new TestModule1();
    ExposingModule other = new ExposingModule( "my module" );

    AcrossContext context = new AcrossContext();
    context.addModule( module );
    context.addModule( other );
View Full Code Here


    context.setInstallerAction( InstallerAction.DISABLED );

    TestModule1 module = new TestModule1();
    context.addModule( module );
    context.addModule( new TestModule2() );
    context.addModule( new ExposingModule( module.getName() ) );

    boolean failed = false;

    try {
      context.bootstrap();
View Full Code Here

TOP

Related Classes of com.foreach.across.test.modules.exposing.ExposingModule

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.