Examples of IMaudeProcessInteract


Examples of es.upv.dsic.issi.moment.maudedaemon.maude.IMaudeProcessInteract

  public MaudeProcessTests(String arg0) {   
    super(arg0)
 

  public void testCreateCoreMaudeProcessInteract() {
    IMaudeProcessInteract maudePI = MaudeDaemonPlugin.getDefault().getNewMaudeProcessInteract();
    maudePI.configMaudeFromPrefs();
    maudePI.setAutoConfig(false);
    maudePI.setCoreMaude();
   
    try {
      maudePI.execMaude();
    } catch (IOException e) {
      e.printStackTrace();
    }
   
    assertTrue("Maude is running.",maudePI.isRunning())
    assertTrue("Maude is running in Core Maude mode.",maudePI.isCoreMaude());
   
    maudePI.quitMaude();
   
    assertFalse("Maude process finished.",maudePI.isRunning());
  }
View Full Code Here

Examples of es.upv.dsic.issi.moment.maudedaemon.maude.IMaudeProcessInteract

   
    assertFalse("Maude process finished.",maudePB.isRunning());
  }
 
  public void testCreateFullMaudeProcessInteract() {
    IMaudeProcessInteract maudePI = MaudeDaemonPlugin.getDefault().getNewMaudeProcessInteract();
    maudePI.configMaudeFromPrefs();
    maudePI.setAutoConfig(false);
    maudePI.setFullMaude();
   
    try {
      maudePI.execMaude();
    } catch (IOException e) {
      e.printStackTrace();
    }
   
    assertTrue("Maude is running.",maudePI.isRunning());
    assertTrue("Maude is running in Full Maude mode.",maudePI.isFullMaude());
   
    maudePI.quitMaude();
   
    assertFalse("Maude process finished.",maudePI.isRunning());
  }
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.