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 testPreAndPostfix()
|
|||
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*bar");↵ | |
3 | m.setTo("baz");↵ | 3 | m.setTo("plonk*pling");↵ | |
4 | assertNull("Shouldn\'t match foobar", m.mapFileName("plonk"));↵ | 4 | assertNull("Shouldn\'t match foo*bar", m.mapFileName("bar.baz"));↵ | |
5 | String[] result = m.mapFileName("foobar");↵ | 5 | String[] result = m.mapFileName("foo.bar");↵ | |
6 | assertNotNull("Should match foobar", result);↵ | 6 | assertNotNull("Should match foo*bar", result);↵ | |
7 | assertEquals("only one result for foobar", 1, result.length);↵ | 7 | assertEquals("only one result for foo.bar", 1, result.length);↵ | |
8 | assertEquals("baz", result[0]); | 8 | assertEquals("plonk.pling", result[0]); | |
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.0 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 34 |
Number of mapped statements | 8 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 0.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | GlobPatternMapper m = new GlobPatternMapper(); | 1 | GlobPatternMapper m = new GlobPatternMapper(); | ||||||||||||||
2 | m.setFrom("foobar"); |
| 2 | m.setFrom("foo*bar"); | |||||||||||||
3 | m.setTo("baz"); |
| 3 | m.setTo("plonk*pling"); | |||||||||||||
4 | assertNull("Shouldn\'t match foobar", m.mapFileName("plonk")); |
| 4 | assertNull("Shouldn\'t match foo*bar", m.mapFileName("bar.baz")); | |||||||||||||
5 | String[] result = m.mapFileName("foobar"); |
| 5 | String[] result = m.mapFileName("foo.bar"); | |||||||||||||
6 | assertNotNull("Should match foobar", result); |
| 6 | assertNotNull("Should match foo*bar", result); | |||||||||||||
7 | assertEquals("only one result for foobar", 1, result.length); |
| 7 | assertEquals("only one result for foo.bar", 1, result.length); | |||||||||||||
8 | assertEquals("baz", result[0]); |
| 8 | assertEquals("plonk.pling", result[0]); |
Row | Violation |
---|---|
1 | Clone fragment #1 returns variables , while Clone fragment #2 returns variables m, result |