Package org.emftrace.metamodel.QUARCModel.GSS

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


    mappingMatrixCreator.runWithoutUnicaseCommand();
    goalPrincipleMappingMatrix = mappingMatrixCreator.getMatrix();

    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
   
    createImpact(gss, p1, g1, 100.0f);
   
    // check result
View Full Code Here


   */
  @Test
  public void test1() {

    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
   
    createImpact(gss, p1, g1, 100.0f);
   
    // execute required phases
View Full Code Here

  public void test2() {

    // build graph for test case
   
   
    Goal g1 = createGoal(gss, 1);
    Goal g2 = createGoal(gss, 2);
    Principle p1 = createPrinciple(gss, 1);

    createDecomposition(gss, g2, g1);
    createImpact(gss, p1, g2, 100.0f);
   
View Full Code Here

  public void test3() {

    // build graph for test case
   
   
    Goal g1 = createGoal(gss, 1);
    Goal g2 = createGoal(gss, 2);
    Goal g3 = createGoal(gss, 3);
    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);

    createDecomposition(gss, g2, g1);
    createDecomposition(gss, g3, g1);
View Full Code Here

  public void test4() {

    // build graph for test case
   
   
    Goal g1 = createGoal(gss, 1);
    Goal g2 = createGoal(gss, 2);
    Goal g3 = createGoal(gss, 3);
   
    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);

    createDecomposition(gss, g2, g1);
View Full Code Here

  @Test
  public void test5() {

    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Goal g2 = createGoal(gss, 2);
    Goal g3 = createGoal(gss, 3);
   
    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);
    Principle p3 = createPrinciple(gss, 3);
    Principle p4 = createPrinciple(gss, 4);
View Full Code Here

  @Test
  public void test6() {

    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Goal g2 = createGoal(gss, 2);
    Goal g3 = createGoal(gss, 3);
   
    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);
    Principle p3 = createPrinciple(gss, 3);
    Principle p4 = createPrinciple(gss, 4);
View Full Code Here

  @Test
  public void test7() {

    // build graph for test case
   
    Goal g1 = createGoal(gss, 1);
   
    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);
    Principle p3 = createPrinciple(gss, 3);
View Full Code Here

        .runWithoutUnicaseCommand();
  }

  @Test
  public void testNoPreconditionsFromParents() {
    Goal g1 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);

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

        PreconditionFinder.getRequirementsFromParent(p2, cacheManager));
  }

  @Test
  public void testPreconditionsFromParents1() {
    Goal g1 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);

    Pattern si1 = createPattern(gss, 1);
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.