/**
   * Run the IStatus merge(IStatus,IStatus) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 4/8/14 10:51 AM
   */
  @Test
  public void testMerge_4() throws Exception {
    IStatus status = new JavaModelStatus();
    IStatus newStatus = new JavaModelStatus();

    IStatus result = StatusUtil.merge(status, newStatus);

    // add additional test code here
    assertNotNull(result);
  }