Package com.opengamma.financial.security.deposit

Examples of com.opengamma.financial.security.deposit.ContinuousZeroDepositSecurity


    assertNull(ids);
  }

  @Test
  public void testContinuousZeroDepositSecurity() {
    final ContinuousZeroDepositSecurity security = ExposureFunctionTestHelper.getContinuousZeroDepositSecurity();
    final List<ExternalId> ids = security.accept(EXPOSURE_FUNCTION);
    assertEquals(1, ids.size());
    assertEquals(ExternalId.of(SCHEME, "CONTINUOUS_ZERO_DEPOSIT_DE"), ids.get(0));
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.security.deposit.ContinuousZeroDepositSecurity

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.