Package org.emftrace.metamodel.QUARCModel.GSS

Examples of org.emftrace.metamodel.QUARCModel.GSS.Goal


  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
   
    Goal g2 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);
   
View Full Code Here


  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
   
    Goal g2 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);
   
View Full Code Here

   * @param id
   *            an ID of the Goal (used as name)
   * @return the created Goal
   */
  protected Goal createGoal(GSS gss, int id) {
    Goal goal = GSSFactory.eINSTANCE.createGoal();
    goal.setName("Goal " + id);
    gss.getElements().add(goal);
    return goal;
  }
View Full Code Here

  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
   
    Goal g2 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);
   
View Full Code Here

  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
   
    Goal g2 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);
   
View Full Code Here

  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
   
    Goal g2 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);
   
View Full Code Here

  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
    Pattern si1 = createPattern(gss, 1);
   
    createImpact(gss, p1, g1, 100.0f);
    createImpact(gss, si1, p1, 100.0f);
View Full Code Here

  }

  @Test
  public void test() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
   
    Goal g2 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);
   
View Full Code Here

     }

  @Test
  public void testStoreRatingBetweenSolutionAndPrinciples() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
    Pattern si1 = createPattern(gss, 1);
   
    createImpact(gss, p1, g1, 100.0f);
    createImpact(gss, si1, p1, 100.0f);
View Full Code Here

  }
 
  @Test
  public void testStoreImpactBetweenGoalsAndPrinciples() {
    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
    Pattern si1 = createPattern(gss, 1);
   
    createImpact(gss, p1, g1, 100.0f);
    createImpact(gss, si1, p1, 100.0f);
View Full Code Here

TOP

Related Classes of org.emftrace.metamodel.QUARCModel.GSS.Goal

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.