File path: /jakarta-jmeter-2.3.2/src/org/apache/jmeter/assertions/gui/XPathAssertionGui.java | File path: /jakarta-jmeter-2.3.2/src/org/apache/jmeter/control/gui/IfControllerPanel.java | |||
Method name: void modifyTestElement(TestElement)
|
Method name: void modifyTestElement(TestElement)
|
|||
Number of AST nodes: 6 | Number of AST nodes: 5 | |||
1 | super.configureTestElement(el);↵ | 1 | configureTestElement(↵ | |
2 | if (el instanceof XPathAssertion) {↵ | |||
3 | XPathAssertion assertion = (XPathAssertion) el;↵ | |||
4 | assertion.setNegated(xpath.isNegated());↵ | |||
5 | assertion.setXPathString(xpath.getXPath());↵ | |||
6 | xml.modifyTestElement(assertion↵ | 2 | controller);↵ | |
3 | if (controller instanceof IfController) {↵ | |||
4 | IfController ifController = (IfController) controller;↵ | |||
5 | ifController.setCondition(theCondition.getText());↵ | |||
7 | );↵ | 6 | ifController.setEvaluateAll(evaluateAll.isSelected());↵ | |
8 | } | 7 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 21 |
Number of mapped statements | 5 |
Number of unmapped statements in the first code fragment | 1 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 5147.0 |
Clone type | Type 3 |
ID | Statement | ID | Statement | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | super.configureTestElement(el); |
| 1 | configureTestElement(controller); | |||||||||||||||||||||||||||||
2 | if (el instanceof XPathAssertion) |
| 2 | if (controller instanceof IfController) | |||||||||||||||||||||||||||||
3 | XPathAssertion assertion = (XPathAssertion)el; |
| 3 | IfController ifController = (IfController)controller; | |||||||||||||||||||||||||||||
4 | assertion.setNegated(xpath.isNegated()); |
| 5 | ifController.setEvaluateAll(evaluateAll.isSelected()); | |||||||||||||||||||||||||||||
5 | assertion.setXPathString(xpath.getXPath()); |
| 4 | ifController.setCondition(theCondition.getText()); | |||||||||||||||||||||||||||||
6 | xml.modifyTestElement(assertion); | |
Row | Violation |
---|---|
1 | Expression configureTestElement(controller) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression super.configureTestElement(el) is a void method call, and thus it cannot be parameterized |
3 | Expression configureTestElement(controller) is a void method call, and thus it cannot be parameterized |
4 | Expression assertion.setNegated(xpath.isNegated()) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Expression ifController.setEvaluateAll(evaluateAll.isSelected()) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
6 | Expression assertion.setNegated(xpath.isNegated()) is a void method call, and thus it cannot be parameterized |
7 | Expression ifController.setEvaluateAll(evaluateAll.isSelected()) is a void method call, and thus it cannot be parameterized |
8 | Expression assertion.setXPathString(xpath.getXPath()) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
9 | Expression ifController.setCondition(theCondition.getText()) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
10 | Expression assertion.setXPathString(xpath.getXPath()) is a void method call, and thus it cannot be parameterized |
11 | Expression ifController.setCondition(theCondition.getText()) is a void method call, and thus it cannot be parameterized |
12 | Clone fragment #1 returns variables assertion , while Clone fragment #2 returns variables |