Package com.intellij.testFramework

Examples of com.intellij.testFramework.CompilerTester


  private CompilerTester myTester;

  @Override
  public void setUp() throws Exception {
    super.setUp();
    myTester = new CompilerTester(myModule);
    ClojureCompilerSettings.getInstance(getProject()).getState().COMPILE_CLOJURE = true;
    File jar = new File(TestUtils.getMockClojureLib());
    PsiTestUtil.addLibrary(myModule, "clojure", jar.getParent(), jar.getName());
   
  }
View Full Code Here

TOP

Related Classes of com.intellij.testFramework.CompilerTester

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.