String[] result = m.mapFileName("foo.bar"); assertNotNull("Should match foo*", result); assertEquals("only one result for foo.bar", 1, result.length); assertEquals("plonk.bar", result[0]);
String[] result = m.mapFileName("foo.bar"); assertNotNull("Should match foo*bar", result); assertEquals("only one result for foo.bar", 1, result.length); assertEquals("plonk.pling", result[0]);
Clone fragments detected by clone detection tool
File path: /apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/util/GlobPatternMapperTest.java File path: /apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/util/GlobPatternMapperTest.java
Method name: void testPrefixOnly() Method name: void testPreAndPostfix()
Number of AST nodes: 4 Number of AST nodes: 4
1
String[] result = m.mapFileName("foo.bar");
1
String[] result = m.mapFileName("foo.bar");
2
        assertNotNull("Should match foo*", result);
2
        assertNotNull("Should match foo*bar", result);
3
        assertEquals("only one result for foo.bar", 1, result.length);
3
        assertEquals("only one result for foo.bar", 1, result.length);
4
        assertEquals("plonk.bar", result[0]);
4
        assertEquals("plonk.pling", result[0]);
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones locationClones are declared in the same class
Number of node comparisons16
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements4
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    5
    String[] result = m.mapFileName("foo.bar");
    5
    String[] result = m.mapFileName("foo.bar");
    6
    assertNotNull("Should match foo*", result);
    6
    assertNotNull("Should match foo*", result);
    6
    assertNotNull("Should match foo*bar", result);
    Differences
    Expression1Expression2Difference
    "Should match foo*""Should match foo*bar"LITERAL_VALUE_MISMATCH
    6
    assertNotNull("Should match foo*bar", result);
    7
    assertEquals("only one result for foo.bar", 1, result.length);
    7
    assertEquals("only one result for foo.bar", 1, result.length);
    8
    assertEquals("plonk.bar", result[0]);
    8
    assertEquals("plonk.bar", result[0]);
    8
    assertEquals("plonk.pling", result[0]);
    Differences
    Expression1Expression2Difference
    "plonk.bar""plonk.pling"LITERAL_VALUE_MISMATCH
    8
    assertEquals("plonk.pling", result[0]);
    Precondition Violations (0)
    Row Violation