Package org.xilaew.atg.model.activityTestCaseGraph

Examples of org.xilaew.atg.model.activityTestCaseGraph.TCGOCLOperationCallExp


            pre.setName(var.getName()+"@Pre");
            TCGOCLVariableCallExp post = factory.createTCGOCLVariableCallExp();
            post.setIsPre(false);
            post.setVariable(var);
            post.setName(var.getName());
            TCGOCLOperationCallExp continuityExp = factory.createTCGOCLOperationCallExp();
            continuityExp.setName("continuity");
            continuityExp.setOperation(TCGOCLOperationType.EQUALS);
            continuityExp.setSource(post);
            continuityExp.getArguments().add(pre);
            tcgAct.getLocalPostconditions().add(continuityExp);
          }
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.xilaew.atg.model.activityTestCaseGraph.TCGOCLOperationCallExp

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.