Package org.apache.hive.ptest.execution.JIRAService

Examples of org.apache.hive.ptest.execution.JIRAService.BuildInfo


public class TestJIRAService  {

  @Test
  public void testFormatBuildTagPositive() throws Throwable {
    BuildInfo buildInfo = JIRAService.formatBuildTag("abc-123");
    Assert.assertEquals("abc/123", buildInfo.getFormattedBuildTag());
    Assert.assertEquals("abc", buildInfo.getBuildName());
    buildInfo = JIRAService.formatBuildTag("PreCommit-HIVE-TRUNK-Build-1115");
    Assert.assertEquals("PreCommit-HIVE-TRUNK-Build/1115", buildInfo.getFormattedBuildTag());
    Assert.assertEquals("PreCommit-HIVE-TRUNK-Build", buildInfo.getBuildName());
  }
View Full Code Here

TOP

Related Classes of org.apache.hive.ptest.execution.JIRAService.BuildInfo

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.