ConcatTest(String name) { super(name); } /** * Test set up, called by the unit test framework prior to each * test. */ public void setUp() { configureProject("src/etc/testcases/taskdefs/concat.xml"); } /** * Test tear down, called by the unit test framework prior to each * test. */ public void tearDown() { executeTarget("cleanup"); } /** * Expect an exception when insufficient information is provided. */ public void test1() { expectBuildException("test1", "Insufficient information."); } /** * Expect an exception when the destination file is invalid. */ public void test2() { expectBuildException("test2", "Invalid destination file.");
GUnzipTest(String name) { super(name); } public void setUp() { configureProject("src/etc/testcases/taskdefs/gunzip.xml"); } public void tearDown() { executeTarget("cleanup"); } public void test1() { expectBuildException("test1", "required argument missing"); } public void test2() { expectBuildException("test2", "attribute src invalid");
Clone fragments detected by clone detection tool
File path: /apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/taskdefs/ConcatTest.java File path: /apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/taskdefs/GUnzipTest.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
ConcatTest(String name) {
1
GUnzipTest(String name) {
2
        super(name);
2
        super(name);
3
    }
3
    }
4
    /**
5
     * Test set up, called by the unit test framework prior to each
6
     * test.
7
     */
8
    public void setUp() {
4
    public void setUp() {
9
        configureProject("src/etc/testcases/taskdefs/concat.xml");
5
        configureProject("src/etc/testcases/taskdefs/gunzip.xml");
10
    }
6
    }
11
    /**
7
    
12
     * Test tear down, called by the unit test framework prior to each
13
     * test.
14
     */
15
    public void tearDown() {
16
        executeTarget("cleanup");
17
    }
18
    /**
19
     * Expect an exception when insufficient information is provided.
20
     */
21
    public void test1() {
22
        expectBuildException("test1", "Insufficient information.");
23
    }
24
    /**
25
     * Expect an exception when the destination file is invalid.
26
     */
8
public void tearDown() {
9
        executeTarget("cleanup");
10
    }
11
    public void test1() {
12
        expectBuildException("test1", "required argument missing");
13
    }
27
    public void test2() {
14
    public void test2() {
28
        expectBuildException("test2", "Invalid destination file.");
15
        expectBuildException("test2", "attribute src invalid");
29
    
16
    
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0