Examples of Obligor


Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor ticker
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorTickerField() {

    new Obligor(null, obligorShortName, obligorREDCode, obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'empty' obligor ticker
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testEmptyObligorTickerField() {

    new Obligor("", obligorShortName, obligorREDCode, obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor short name
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorShortNameField() {

    new Obligor(obligorTicker, null, obligorREDCode, obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'empty' obligor short name
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testEmptyObligorShortNameField() {

    new Obligor(obligorTicker, "", obligorREDCode, obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor RED code
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorREDCodeField() {

    new Obligor(obligorTicker, obligorShortName, null, obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'empty' obligor RED code
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testEmptyObligorShortREDCodeField() {

    new Obligor(obligorTicker, obligorShortName, "", obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor composite rating
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorCompositeRatingField() {

    new Obligor(obligorTicker, obligorShortName, obligorREDCode, null, obligorImpliedRating, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor implied rating
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorImpliedRatingField() {

    new Obligor(obligorTicker, obligorShortName, obligorREDCode, obligorCompositeRating, null, obligorCreditRatingMoodys, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor Moodys credit rating
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorCreditRatingMoodysField() {

    new Obligor(obligorTicker, obligorShortName, obligorREDCode, obligorCompositeRating, obligorImpliedRating, null, obligorCreditRatingStandardAndPoors,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
View Full Code Here

Examples of com.opengamma.analytics.financial.credit.obligor.definition.Obligor

  // Test for 'null' obligor S&P credit rating
  @Test(expectedExceptions = IllegalArgumentException.class)
  public void testNullObligorCreditRatingStandardAndPoorsField() {

    new Obligor(obligorTicker, obligorShortName, obligorREDCode, obligorCompositeRating, obligorImpliedRating, obligorCreditRatingMoodys, null,
        obligorCreditRatingFitch, obligorHasDefaulted, obligorSector, obligorRegion, obligorCountry);
  }
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.