Examples of DependencyGraphBuildTrace


Examples of com.opengamma.financial.depgraph.rest.DependencyGraphBuildTrace

    } else {
      name = valueReq;
      constraints = ValueProperties.none();
    }
    properties = properties.addRequirement(new ValueRequirement(name, targetType, ((UniqueIdentifiable) leafNode).getUniqueId(), constraints));
    DependencyGraphBuildTrace trace = getToolContext().getDependencyGraphTraceProvider().getTrace(properties);
    ResolutionFailureTreeTableModel failuresTreeTableModel = new ResolutionFailureTreeTableModel(trace.getFailures());
    return failuresTreeTableModel;
  }
View Full Code Here

Examples of com.opengamma.financial.depgraph.rest.DependencyGraphBuildTrace

  @Test
  public void getTrace() {
    DependencyGraphTraceBuilderProperties properties = new DependencyGraphTraceBuilderProperties();
    when(_builder.build(properties)).thenReturn(_sampleResult);

    DependencyGraphBuildTrace result = _provider.getTrace(properties);

    verify(_builder).build(properties);
    assertEquals(_sampleResult, result);

  }
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.