GlobPatternMapper m = new GlobPatternMapper(); m.setFrom("foobar"); m.setTo("baz"); assertNull("Shouldn\'t match foobar", m.mapFileName("plonk")); String[] result = m.mapFileName("foobar"); assertNotNull("Should match foobar", result); assertEquals("only one result for foobar", 1, result.length); assertEquals("baz", result[0]);
GlobPatternMapper m = new GlobPatternMapper(); m.setFrom("*foo"); m.setTo("*plonk"); assertNull("Shouldn\'t match *foo", m.mapFileName("bar.baz")); String[] result = m.mapFileName("bar.foo"); assertNotNull("Should match *.foo", result); assertEquals("only one result for bar.foo", 1, result.length); assertEquals("bar.plonk", 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 testNoPatternAtAll() Method name: void testPostfixOnly()
Number of AST nodes: 8 Number of AST nodes: 8
1
GlobPatternMapper m = new GlobPatternMapper();
1
GlobPatternMapper m = new GlobPatternMapper();
2
        m.setFrom("foobar");
2
        m.setFrom("*foo");
3
        m.setTo("baz");
3
        m.setTo("*plonk");
4
        assertNull("Shouldn\'t match foobar", m.mapFileName("plonk"));
4
        assertNull("Shouldn\'t match *foo", m.mapFileName("bar.baz"));
5
        String[] result = m.mapFileName("foobar");
5
        String[] result = m.mapFileName("bar.foo");
6
        assertNotNull("Should match foobar", result);
6
        assertNotNull("Should match *.foo", result);
7
        assertEquals("only one result for foobar", 1, result.length);
7
        assertEquals("only one result for bar.foo", 1, result.length);
8
        assertEquals("baz", result[0]);
8
        assertEquals("bar.plonk", result[0]);
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.0
Clones locationClones are declared in the same class
Number of node comparisons34
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements8
    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
    1
    GlobPatternMapper m = new GlobPatternMapper();
    1
    GlobPatternMapper m = new GlobPatternMapper();
    2
    m.setFrom("foobar");
    2
    m.setFrom("foobar");
    2
    m.setFrom("*foo");
    Differences
    Expression1Expression2Difference
    "foobar""*foo"LITERAL_VALUE_MISMATCH
    2
    m.setFrom("*foo");
    3
    m.setTo("baz");
    3
    m.setTo("baz");
    3
    m.setTo("*plonk");
    Differences
    Expression1Expression2Difference
    "baz""*plonk"LITERAL_VALUE_MISMATCH
    3
    m.setTo("*plonk");
    4
    assertNull("Shouldn\'t match foobar", m.mapFileName("plonk"));
    4
    assertNull("Shouldn\'t match foobar", m.mapFileName("plonk"));
    4
    assertNull("Shouldn\'t match *foo", m.mapFileName("bar.baz"));
    Differences
    Expression1Expression2Difference
    "Shouldn\'t match foobar""Shouldn\'t match *foo"LITERAL_VALUE_MISMATCH
    "plonk""bar.baz"LITERAL_VALUE_MISMATCH
    4
    assertNull("Shouldn\'t match *foo", m.mapFileName("bar.baz"));
    5
    String[] result = m.mapFileName("foobar");
    5
    String[] result = m.mapFileName("foobar");
    5
    String[] result = m.mapFileName("bar.foo");
    Differences
    Expression1Expression2Difference
    "foobar""bar.foo"LITERAL_VALUE_MISMATCH
    5
    String[] result = m.mapFileName("bar.foo");
    6
    assertNotNull("Should match foobar", result);
    6
    assertNotNull("Should match foobar", result);
    6
    assertNotNull("Should match *.foo", result);
    Differences
    Expression1Expression2Difference
    "Should match foobar""Should match *.foo"LITERAL_VALUE_MISMATCH
    6
    assertNotNull("Should match *.foo", result);
    7
    assertEquals("only one result for foobar", 1, result.length);
    7
    assertEquals("only one result for foobar", 1, result.length);
    7
    assertEquals("only one result for bar.foo", 1, result.length);
    Differences
    Expression1Expression2Difference
    "only one result for foobar""only one result for bar.foo"LITERAL_VALUE_MISMATCH
    7
    assertEquals("only one result for bar.foo", 1, result.length);
    8
    assertEquals("baz", result[0]);
    8
    assertEquals("baz", result[0]);
    8
    assertEquals("bar.plonk", result[0]);
    Differences
    Expression1Expression2Difference
    "baz""bar.plonk"LITERAL_VALUE_MISMATCH
    8
    assertEquals("bar.plonk", result[0]);
    Precondition Violations (1)
    Row Violation
    1Clone fragment #1 returns variables , while Clone fragment #2 returns variables m, result