Package com.foreach.across.core.installers

Examples of com.foreach.across.core.installers.InstallerAction


  @Test
  public void defaultActionAppliesIfNothingSpecificIsSet() {
    for ( InstallerAction defaultAction : InstallerAction.values() ) {
      settings.setDefaultAction( defaultAction );

      InstallerAction action = settings.shouldRun( "group", "test" );
      assertEquals( defaultAction, action );

      action = settings.shouldRun( RandomStringUtils.random( 10 ), RandomStringUtils.random( 50 ) );
      assertEquals( defaultAction, action );
    }
View Full Code Here

TOP

Related Classes of com.foreach.across.core.installers.InstallerAction

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.