Examples of TCGOCLOperationCallExp


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
Copyright © 2018 www.massapi.com. 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.