f.setPrefix("/examples"); try { f.setFullpath("/doc/manual/index.html"); fail("Can add fullpath to " + f.getDataTypeName() + " when a prefix is already present"); } catch (BuildException be) { assertEquals("Cannot set both fullpath and prefix attributes", be.getMessage()); } f = (ZipFileSet)getInstance();
f.setPrefix("/examples"); try { f.setFullpath("/doc/manual/index.html"); fail("Can add fullpath to " + f.getDataTypeName() + " when a prefix is already present"); } catch (BuildException be) { assertEquals("Cannot set both fullpath and prefix attributes", be.getMessage()); } f = (TarFileSet)getInstance();
Clone fragments detected by clone detection tool
File path: /apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/types/ZipFileSetTest.java File path: /apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/types/TarFileSetTest.java
Method name: void testAttributes() Method name: void testAttributes()
Number of AST nodes: 5 Number of AST nodes: 5
1
f.setPrefix("/examples");
1
f.setPrefix("/examples");
2
        try {
2
        try {
3
            f.setFullpath("/doc/manual/index.html");
3
            f.setFullpath("/doc/manual/index.html");
4
            fail("Can add fullpath to "
4
            fail("Can add fullpath to "
5
                    + f.getDataTypeName()
5
                    + f.getDataTypeName()
6
                    + " when a prefix is already present");
6
                    + " when a prefix is already present");
7
        } catch (BuildException be) {
7
        } catch (BuildException be) {
8
            assertEquals("Cannot set both fullpath and prefix attributes", be.getMessage());
8
            assertEquals("Cannot set both fullpath and prefix attributes", be.getMessage());
9
        }
9
        }
10
        f = (ZipFileSet)getInstance();
10
        f = (TarFileSet)getInstance();
Summary
Number of common nesting structure subtrees1
Number of refactorable cases0
Number of non-refactorable cases1
Time elapsed for finding largest common nesting structure subtrees (ms)0.2
Clones locationClones are in different classes having the same super class
Number of node comparisons13
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)35.9
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    13
    f.setPrefix("/examples");
    13
    f.setPrefix("/examples");
    13
    f.setPrefix("/examples");
    Differences
    Expression1Expression2Difference
    org.apache.tools.ant.types.ZipFileSetorg.apache.tools.ant.types.TarFileSetSUBCLASS_TYPE_MISMATCH
    13
    f.setPrefix("/examples");
    14
    try
    14
    try
    15
    f.setFullpath("/doc/manual/index.html");
    15
    f.setFullpath("/doc/manual/index.html");
    15
    f.setFullpath("/doc/manual/index.html");
    Differences
    Expression1Expression2Difference
    org.apache.tools.ant.types.ZipFileSetorg.apache.tools.ant.types.TarFileSetSUBCLASS_TYPE_MISMATCH
    15
    f.setFullpath("/doc/manual/index.html");
    16
    fail("Can add fullpath to " + f.getDataTypeName() + " when a prefix is already present");
    16
    fail("Can add fullpath to " + f.getDataTypeName() + " when a prefix is already present");
    16
    fail("Can add fullpath to " + f.getDataTypeName() + " when a prefix is already present");
    Differences
    Expression1Expression2Difference
    org.apache.tools.ant.types.ZipFileSetorg.apache.tools.ant.types.TarFileSetSUBCLASS_TYPE_MISMATCH
    16
    fail("Can add fullpath to " + f.getDataTypeName() + " when a prefix is already present");
    17
    f = (ZipFileSet)getInstance();
    17
    f = (ZipFileSet)getInstance();
    17
    f = (TarFileSet)getInstance();
    Differences
    Expression1Expression2Difference
    org.apache.tools.ant.types.ZipFileSetorg.apache.tools.ant.types.TarFileSetSUBCLASS_TYPE_MISMATCH
    org.apache.tools.ant.types.ZipFileSetorg.apache.tools.ant.types.TarFileSetSUBCLASS_TYPE_MISMATCH
    17
    f = (TarFileSet)getInstance();
    Precondition Violations (1)
    Row Violation
    1Clone fragment #1 returns variable f with type org.apache.tools.ant.types.ZipFileSet , while Clone fragment #2 returns variable f with type org.apache.tools.ant.types.TarFileSet