Package org.openiaml.model.custom.actions

Examples of org.openiaml.model.custom.actions.GenerateCodeActionAndView


   
    IFolder outputFolder = getProject().getFolder("output");
    assertNotExists(outputFolder);
   
    // do the action   
    GenerateCodeActionAndView action = new GenerateCodeActionAndView();
    runAction(action, targetModel);
   
    // the output folder should now be created
    assertExists(outputFolder);
   
    // a sitemap should have been created
    IFile sitemap = outputFolder.getFile("sitemap.html");
    assertExists(sitemap);
   
    // and the browser window should have been created
    IWebBrowser browser = action.getCreatedBrowser();
    assertNotNull("Browser was not created", browser);
   
  }
View Full Code Here

TOP

Related Classes of org.openiaml.model.custom.actions.GenerateCodeActionAndView

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.