File path: /jfreechart-1.0.10/tests/org/jfree/data/junit/DefaultKeyedValues2DTests.java | File path: /jfreechart-1.0.10/tests/org/jfree/data/junit/KeyedObjects2DTests.java | |||
Method name: void testSerialization()
|
Method name: void testSerialization()
|
|||
Number of AST nodes: 15 | Number of AST nodes: 15 | |||
1 | DefaultKeyedValues2D kv2D1 = new DefaultKeyedValues2D();↵ | 1 | KeyedObjects2D ko2D1 = new KeyedObjects2D();↵ | |
2 | kv2D1.addValue(new Double(234.2), "Row1", "Col1");↵ | 2 | ko2D1.addObject(new Double(234.2), "Row1", "Col1");↵ | |
3 | kv2D1.addValue(null, "Row1", "Col2");↵ | 3 | ko2D1.addObject(null, "Row1", "Col2");↵ | |
4 | kv2D1.addValue(new Double(345.9), "Row2", "Col1");↵ | 4 | ko2D1.addObject(new Double(345.9), "Row2", "Col1");↵ | |
5 | kv2D1.addValue(new Double(452.7), "Row2", "Col2");↵ | 5 | ko2D1.addObject(new Double(452.7), "Row2", "Col2");↵ | |
6 | DefaultKeyedValues2D kv2D2 = null;↵ | 6 | KeyedObjects2D ko2D2 = null;↵ | |
7 | try {↵ | 7 | try {↵ | |
8 | ByteArrayOutputStream buffer = new ByteArrayOutputStream();↵ | 8 | ByteArrayOutputStream buffer = new ByteArrayOutputStream();↵ | |
9 | ObjectOutput out = new ObjectOutputStream(buffer);↵ | 9 | ObjectOutput out = new ObjectOutputStream(buffer);↵ | |
10 | out.writeObject(kv2D1);↵ | 10 | out.writeObject(ko2D1);↵ | |
11 | out.close();↵ | 11 | out.close();↵ | |
12 | ObjectInput in = new ObjectInputStream(↵ | 12 | ObjectInput in = new ObjectInputStream(↵ | |
13 | new ByteArrayInputStream(buffer.toByteArray()));↵ | 13 | new ByteArrayInputStream(buffer.toByteArray()));↵ | |
14 | kv2D2 = (DefaultKeyedValues2D) in.readObject();↵ | 14 | ko2D2 = (KeyedObjects2D) in.readObject();↵ | |
15 | in.close();↵ | 15 | in.close();↵ | |
16 | }↵ | 16 | }↵ | |
17 | catch (Exception e) {↵ | 17 | catch (Exception e) {↵ | |
18 | e.printStackTrace();↵ | 18 | e.printStackTrace();↵ | |
19 | }↵ | 19 | }↵ | |
20 | assertEquals(kv2D1, kv2D2); | 20 | assertEquals(ko2D1, ko2D2); | |
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 | 113 |
Number of mapped statements | 8 |
Number of unmapped statements in the first code fragment | 7 |
Number of unmapped statements in the second code fragment | 7 |
Time elapsed for statement mapping (ms) | 16.1 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| 1 | KeyedObjects2D ko2D1 = new KeyedObjects2D(); | ||||||||||||||||||||||
1 | DefaultKeyedValues2D kv2D1 = new DefaultKeyedValues2D(); |
| | ||||||||||||||||||||||
|
| 2 | ko2D1.addObject(new Double(234.2), "Row1", "Col1"); | ||||||||||||||||||||||
2 | kv2D1.addValue(new Double(234.2), "Row1", "Col1"); |
| | ||||||||||||||||||||||
|
| 3 | ko2D1.addObject(null, "Row1", "Col2"); | ||||||||||||||||||||||
3 | kv2D1.addValue(null, "Row1", "Col2"); |
| | ||||||||||||||||||||||
|
| 4 | ko2D1.addObject(new Double(345.9), "Row2", "Col1"); | ||||||||||||||||||||||
4 | kv2D1.addValue(new Double(345.9), "Row2", "Col1"); |
| | ||||||||||||||||||||||
|
| 5 | ko2D1.addObject(new Double(452.7), "Row2", "Col2"); | ||||||||||||||||||||||
5 | kv2D1.addValue(new Double(452.7), "Row2", "Col2"); |
| | ||||||||||||||||||||||
| 6 | KeyedObjects2D ko2D2 = null; | |||||||||||||||||||||||
6 | DefaultKeyedValues2D kv2D2 = null; | | |||||||||||||||||||||||
7 | try | 7 | try | ||||||||||||||||||||||
8 | ByteArrayOutputStream buffer = new ByteArrayOutputStream(); | 8 | ByteArrayOutputStream buffer = new ByteArrayOutputStream(); | ||||||||||||||||||||||
9 | ObjectOutput out = new ObjectOutputStream(buffer); | 9 | ObjectOutput out = new ObjectOutputStream(buffer); | ||||||||||||||||||||||
10 | out.writeObject(kv2D1); |
| 10 | out.writeObject(ko2D1); | |||||||||||||||||||||
11 | out.close(); | 11 | out.close(); | ||||||||||||||||||||||
12 | ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray())); | 12 | ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray())); | ||||||||||||||||||||||
|
| 13 | ko2D2 = (KeyedObjects2D)in.readObject(); | ||||||||||||||||||||||
13 | kv2D2 = (DefaultKeyedValues2D)in.readObject(); |
| | ||||||||||||||||||||||
14 | in.close(); | 14 | in.close(); | ||||||||||||||||||||||
15 | assertEquals(kv2D1, kv2D2); |
| 15 | assertEquals(ko2D1, ko2D2); |
Row | Violation |
---|---|
1 | Unmatched statement KeyedObjects2D ko2D1=new KeyedObjects2D(); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
2 | Unmatched statement DefaultKeyedValues2D kv2D1=new DefaultKeyedValues2D(); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
3 | Unmatched statement ko2D1.addObject(new Double(234.2),"Row1","Col1"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
4 | Unmatched statement kv2D1.addValue(new Double(234.2),"Row1","Col1"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
5 | Unmatched statement ko2D1.addObject(null,"Row1","Col2"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
6 | Unmatched statement kv2D1.addValue(null,"Row1","Col2"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
7 | Unmatched statement ko2D1.addObject(new Double(345.9),"Row2","Col1"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
8 | Unmatched statement kv2D1.addValue(new Double(345.9),"Row2","Col1"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
9 | Unmatched statement ko2D1.addObject(new Double(452.7),"Row2","Col2"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
10 | Unmatched statement kv2D1.addValue(new Double(452.7),"Row2","Col2"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
11 | Type org.jfree.data.DefaultKeyedValues2D of variable kv2D1 does not match with type org.jfree.data.KeyedObjects2D of variable ko2D1 |
12 | Unmatched statement ko2D2=(KeyedObjects2D)in.readObject(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
13 | Unmatched statement ko2D2=(KeyedObjects2D)in.readObject(); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted |
14 | Unmatched statement kv2D2=(DefaultKeyedValues2D)in.readObject(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
15 | Unmatched statement kv2D2=(DefaultKeyedValues2D)in.readObject(); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted |
16 | Type org.jfree.data.DefaultKeyedValues2D of variable kv2D1 does not match with type org.jfree.data.KeyedObjects2D of variable ko2D1 |
17 | Type org.jfree.data.DefaultKeyedValues2D of variable kv2D2 does not match with type org.jfree.data.KeyedObjects2D of variable ko2D2 |