Package org.apache.helix.controller.stages

Examples of org.apache.helix.controller.stages.CompatibilityCheckStage.postProcess()


    }
    catch (Exception e)
    {
      Assert.fail("Should not fail since compatibility check will be skipped if participant version is null");
    }
    stage.postProcess();
  }

  @Test
  public void testNullControllerVersion()
  {
View Full Code Here


    }
    catch (Exception e)
    {
      Assert.fail("Should not fail since compatibility check will be skipped if controller version is null");
    }
    stage.postProcess();
  }

  @Test
  public void testIncompatible()
  {
View Full Code Here

    }
    catch (Exception e)
    {
      // OK
    }
    stage.postProcess();
  }

}
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.