Package org.openiaml.emf.properties.library

Examples of org.openiaml.emf.properties.library.ReferencesCycles


    investigators.add(new MinDegreeContainments(selector));
    investigators.add(new MinDegreeReferences(selector));
    investigators.add(new MinDegreeReferencesWithoutContainments(selector));
    investigators.add(new ReferencesCount(selector));
    investigators.add(new ReferencesCountIgnoreEmpty(selector));
    investigators.add(new ReferencesCycles(selector));
    investigators.add(new ReferencesDiameter(selector));
    investigators.add(new ReferencesRadius(selector));
    investigators.add(new ReferencesSum(selector));
    investigators.add(new ReferencesWithoutContainmentsCount(selector));
    investigators.add(new ReferencesWithoutContainmentsCountIgnoreEmpty(selector));
View Full Code Here


 
  /**
   * This model should have exactly 6 cycles.
   */
  public void testBigInfiniteLoop2() {
    ReferencesCycles rc = new ReferencesCycles("references cycles", this);
    EObject model = loadModelDirectly("tests/BigInfiniteLoop-2.iaml");
    Object result = rc.evaluate(model);
    assertTrue("Result should be Number, is: " + result.getClass(), Number.class.isInstance(result));
   
    assertEquals(6, (Number) result);
  }
View Full Code Here

TOP

Related Classes of org.openiaml.emf.properties.library.ReferencesCycles

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.