Package org.eclipse.egit.ui.common.CreatePatchWizard

Examples of org.eclipse.egit.ui.common.CreatePatchWizard.NoChangesPopup


  }

  @Test
  public void testNoChanges() throws Exception {
    CreatePatchWizard.openWizard(PROJ1);
    NoChangesPopup popup = new NoChangesPopup(
        bot.shell(UIText.GitCreatePatchAction_cannotCreatePatch));
    popup.cancelPopup();
  }
View Full Code Here


    stage(fileToStage);
    touch(PROJ2, "folder/test.txt", "new content in " + PROJ2);

    CreatePatchWizard.openWizard(PROJ1);

    NoChangesPopup popup = new NoChangesPopup(
        bot.shell(UIText.GitCreatePatchAction_cannotCreatePatch));
    popup.cancelPopup();
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.common.CreatePatchWizard.NoChangesPopup

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.