CloneSet79


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
21220.988statement_sequence[16]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
121702
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/test/src/org/apache/jmeter/protocol/http/sampler/PostWriterTest.java
221724
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/test/src/org/apache/jmeter/protocol/http/sampler/PostWriterTest.java
Next
Last
Clone Instance
1
Line Count
21
Source Line
702
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/test/src/org/apache/jmeter/protocol/http/sampler/PostWriterTest.java

output.write("Content-Disposition: form-data; name=\"".getBytes(HTTP_ENCODING));
output.write(titleField.getBytes(HTTP_ENCODING));
output.write("\"".getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write("Content-Type: ".getBytes(HTTP_ENCODING));
output.write(mimeType.getBytes(HTTP_ENCODING));
output.write("; charset=".getBytes(HTTP_ENCODING));
output.write((contentEncoding == null ? PostWriter.ENCODING: contentEncoding).getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write("Content-Transfer-Encoding: 8bit".getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write(CRLF);
if (contentEncoding != null) {
  output.write(titleValue.getBytes(contentEncoding));
}
else {
  output.write(titleValue.getBytes());
}
output.write(CRLF);
output.write(DASH_DASH);
output.write(boundaryString.getBytes(HTTP_ENCODING));


First
Previous
Clone Instance
2
Line Count
21
Source Line
724
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/test/src/org/apache/jmeter/protocol/http/sampler/PostWriterTest.java

output.write("Content-Disposition: form-data; name=\"".getBytes(HTTP_ENCODING));
output.write(descriptionField.getBytes(HTTP_ENCODING));
output.write("\"".getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write("Content-Type: ".getBytes(HTTP_ENCODING));
output.write(mimeType.getBytes(HTTP_ENCODING));
output.write("; charset=".getBytes(HTTP_ENCODING));
output.write((contentEncoding == null ? PostWriter.ENCODING: contentEncoding).getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write("Content-Transfer-Encoding: 8bit".getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write(CRLF);
if (contentEncoding != null) {
  output.write(descriptionValue.getBytes(contentEncoding));
}
else {
  output.write(descriptionValue.getBytes());
}
output.write(CRLF);
output.write(DASH_DASH);
output.write(boundaryString.getBytes(HTTP_ENCODING));


Clone AbstractionParameter Count: 2Parameter Bindings

output.write("Content-Disposition: form-data; name=\"".getBytes(HTTP_ENCODING));
output.write( [[#variablee0ce980]].getBytes(HTTP_ENCODING));
output.write("\"".getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write("Content-Type: ".getBytes(HTTP_ENCODING));
output.write(mimeType.getBytes(HTTP_ENCODING));
output.write("; charset=".getBytes(HTTP_ENCODING));
output.write((contentEncoding == null ? PostWriter.ENCODING: contentEncoding).getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write("Content-Transfer-Encoding: 8bit".getBytes(HTTP_ENCODING));
output.write(CRLF);
output.write(CRLF);
if (contentEncoding != null) {
  output.write( [[#variablee0cf4e0]].getBytes(contentEncoding));
}
else {
  output.write( [[#variablee0cf4e0]].getBytes());
}
output.write(CRLF);
output.write(DASH_DASH);
output.write(boundaryString.getBytes(HTTP_ENCODING));
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#e0ce980]]
titleField 
12[[#e0ce980]]
descriptionField 
21[[#e0cf4e0]]
titleValue 
22[[#e0cf4e0]]
descriptionValue