CloneSet592


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12230.961statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11254
E:/TSE/Projects-CloneDR/columba-1.4-src/calendar/src/test/java/org/columba/calendar/store/LocalCalendarStoreTest.java
21278
E:/TSE/Projects-CloneDR/columba-1.4-src/calendar/src/test/java/org/columba/calendar/store/LocalXMLFileStoreTest.java
Next
Last
Clone Instance
1
Line Count
12
Source Line
54
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/calendar/src/test/java/org/columba/calendar/store/LocalCalendarStoreTest.java

storage.remove(uuid);
try {
  IComponentInfo result = storage.get(uuid);
}
catch (StoreException
       e) {
  // that is the expected case
  return;
}
catch (Exception
       e) {
  fail("Expected a StoreException, not " + e.getMessage());
}


First
Previous
Clone Instance
2
Line Count
12
Source Line
78
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/calendar/src/test/java/org/columba/calendar/store/LocalXMLFileStoreTest.java

storage.remove(uuid);
try {
  Document result = storage.load(uuid);
}
catch (StoreException
       e) {
  // this is the expected cases
  return;
}
catch (Exception
       e) {
  fail("Expected StoreException, not " + e.getMessage());
}


Clone AbstractionParameter Count: 3Parameter Bindings

storage.remove(uuid);
try {
   [[#variable130685e0]] result = storage. [[#variable130716a0]](uuid);
}
catch (StoreException
       e) {
  // that is the expected case
  // this is the expected cases
  return;
}
catch (Exception
       e) {
  fail( [[#variable130707a0]] + e.getMessage());
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#130685e0]]
IComponentInfo 
12[[#130685e0]]
Document 
21[[#130716a0]]
get 
22[[#130716a0]]
load 
31[[#130707a0]]
"Expected a StoreException, not " 
32[[#130707a0]]
"Expected StoreException, not "