Package com.intellij.execution.testframework

Examples of com.intellij.execution.testframework.TestTreeView


  public void initUI() {
    super.initUI();
    if (myServer == null) {
      return;
    }
    TestTreeView treeView = this.getResultsViewer().getTreeView();
    TestTreeRenderer originalRenderer = ObjectUtils.tryCast(treeView.getCellRenderer(), TestTreeRenderer.class);
    if (originalRenderer != null) {
      myFormatter = new JstdRootTestProxyFormatter(myServer, treeView);
      originalRenderer.setAdditionalRootFormatter(myFormatter);
    }
    if (!myServer.isStopped() && myServer.getCapturedBrowsers().isEmpty()) {
View Full Code Here

TOP

Related Classes of com.intellij.execution.testframework.TestTreeView

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.