Examples of PositionSearchRequest


Examples of com.opengamma.master.position.PositionSearchRequest

    assertEquals(0, test.getDocuments().size());
  }
 
  @Test
  public void test_search_identifier() {
    PositionSearchRequest request = new PositionSearchRequest();
    request.setSecurityIdValue("S100");
    PositionSearchResult test = _posMaster.search(request);
   
    assertEquals(1, test.getDocuments().size());
    assert100(test.getDocuments().get(0));
  }
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.