Package org.emftrace.metamodel.QUARCModel.GSS

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


  }

  @Test
  public void testSimpleGraphWithoutRelationFromGoalToSI() {

    Principle p1 = createPrinciple(gss, 1);
    Pattern si1 = createPattern(gss, 1);
    createImpact(gss, si1, p1, 1);

    gssQuery.setIncludeAll(true);
    executeRequiredPhases(false);
View Full Code Here


  @Test
  public void testIgnorePrincipleWithoutRelationToGoal1() {

    Goal g1 = createGoal(gss, 1);

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

    Pattern si1 = createPattern(gss, 1);

    createImpact(gss, p1, g1, 1);
    createImpact(gss, si1, p1, 1);
View Full Code Here

  @Test
  public void test1() {

    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
    Pattern si1 = createPattern(gss, 1);

    createImpact(gss, p1, g1, 1);
    createImpact(gss, si1, p1, 1);
View Full Code Here

  @Test
  public void test2() {

    // build graph for test case
    Goal g1 = createGoal(gss, 1);
    Principle p1 = createPrinciple(gss, 1);
    Principle p2 = createPrinciple(gss, 2);
    Pattern si1 = createPattern(gss, 1);
   
    createDecomposition(gss, p2, p1);
   
    createImpact(gss, p1, g1, 100);
View Full Code Here

  @Test
  public void testIgnorePrincipleWithoutRelationToGoal2() {

    Goal g1 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Pattern si1 = createPattern(gss, 1);

    createImpact(gss, si1, p1, 1);
View Full Code Here

  @Test
  public void test3() {

    // 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);
    Pattern si1 = createPattern(gss, 1);
   
    createDecomposition(gss, p2, p1);
    createDecomposition(gss, p3, p1);
   
View Full Code Here

  @Test
  public void testIgnorePrincipleWithoutRelationToGoal3() {

    Goal g1 = createGoal(gss, 1);

    Principle p1 = createPrinciple(gss, 1);

    Principle p2 = createPrinciple(gss, 2);

    Pattern si1 = createPattern(gss, 1);

    createImpact(gss, p1, g1, 1);
    createImpact(gss, si1, p1, 1);
View Full Code Here

  @Test
  public void test4() {

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

   
    createDecomposition(gss, p2, p1);
View Full Code Here

  @Test
  public void testImpactFromTwoPriniplesToASI() {

    Goal g1 = createGoal(gss, 1);

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

    Pattern si1 = createPattern(gss, 1);

    createImpact(gss, p1, g1, 1);
    createImpact(gss, si1, p1, 1);
View Full Code Here

  public void test5() {

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

    createDecomposition(gss, p2, p1);
    createDecomposition(gss, p3, p1);
View Full Code Here

TOP

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

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.