Examples of UnderlyingPool


Examples of com.opengamma.analytics.financial.credit.underlyingpool.definition.UnderlyingPool

  // ----------------------------------------------------------------------------------------------------------------------------------------

  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullCouponsField() {

    new UnderlyingPool(poolName, obligors, currency, debtSeniority, restructuringClause, notionals, null, recoveryRates, obligorWeights);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.underlyingpool.definition.UnderlyingPool

  // ----------------------------------------------------------------------------------------------------------------------------------------

  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullRecoveryRatesField() {

    new UnderlyingPool(poolName, obligors, currency, debtSeniority, restructuringClause, notionals, coupons, null, obligorWeights);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.underlyingpool.definition.UnderlyingPool

  // ----------------------------------------------------------------------------------------------------------------------------------------

  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorWeightsField() {

    new UnderlyingPool(poolName, obligors, currency, debtSeniority, restructuringClause, notionals, coupons, recoveryRates, null);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.underlyingpool.definition.UnderlyingPool

  // ----------------------------------------------------------------------------------------------------------------------------------------

  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullYieldCurveField() {

    new UnderlyingPool(poolName, obligors, currency, debtSeniority, restructuringClause, notionals, coupons, recoveryRates, obligorWeights);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.underlyingpool.definition.UnderlyingPool

    // Initialise the obligors in the pool
    initialiseObligorsInPool();

    // Call the UnderlyingPool constructor
    final UnderlyingPool underlyingPool = new UnderlyingPool(
        poolName,
        obligors,
        currency,
        debtSeniority,
        restructuringClause,
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.