Millisecond m = new Millisecond(250, 50, 45, 21, 21, 4, 2001); GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY); calendar.setTimeZone(TimeZone.getTimeZone("Europe/Frankfurt")); assertEquals(987889550250L, m.getLastMillisecond(calendar)); // try null calendar boolean pass = false; try { m.getLastMillisecond((Calendar) null); } catch (NullPointerException e) { pass = true; } assertTrue(pass);
Second s = new Second(55, 40, 2, 15, 4, 2000); GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY); calendar.setTimeZone(TimeZone.getTimeZone("Europe/Frankfurt")); assertEquals(955766455000L, s.getFirstMillisecond(calendar)); // try null calendar boolean pass = false; try { s.getFirstMillisecond((Calendar) null); } catch (NullPointerException e) { pass = true; } assertTrue(pass);
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/tests/org/jfree/data/time/junit/MillisecondTests.java File path: /jfreechart-1.0.10/tests/org/jfree/data/time/junit/SecondTests.java
Method name: void testGetLastMillisecondWithCalendar() Method name: void testGetFirstMillisecondWithCalendar()
Number of AST nodes: 8 Number of AST nodes: 8
1
Millisecond m = new Millisecond(250, 50, 45, 21, 21, 4, 2001);
1
Second s = new Second(55, 40, 2, 15, 4, 2000);
2
        GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY);
2
        GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY);
3
        calendar.setTimeZone(TimeZone.getTimeZone("Europe/Frankfurt"));
3
        calendar.setTimeZone(TimeZone.getTimeZone("Europe/Frankfurt"));
4
        assertEquals(987889550250L, m.getLastMillisecond(calendar));
4
        assertEquals(955766455000L, s.getFirstMillisecond(calendar));
5
        
5
        
6
        // try null calendar
6
        // try null calendar
7
        boolean pass = false;
7
        boolean pass = false;
8
        try {
8
        try {
9
            m.getLastMillisecond((Calendar) null);
9
            s.getFirstMillisecond((Calendar) null);
10
        }
10
        }
11
        catch (NullPointerException e) {
11
        catch (NullPointerException e) {
12
            pass = true;
12
            pass = true;
13
        }
13
        }
14
        assertTrue(pass);
14
        assertTrue(pass);
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.1
Clones locationClones are in different classes having the same super class
Number of node comparisons18
  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)23.1
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    1
    Millisecond m = new Millisecond(250, 50, 45, 21, 21, 4, 2001);
    1
    Millisecond m = new Millisecond(250, 50, 45, 21, 21, 4, 2001);
    1
    Second s = new Second(55, 40, 2, 15, 4, 2000);
    Differences
    Expression1Expression2Difference
    org.jfree.data.time.Millisecondorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    msVARIABLE_NAME_MISMATCH
    org.jfree.data.time.Millisecondorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    org.jfree.data.time.Millisecondorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    new Millisecond(250,50,45,21,21,4,2001)new Second(55,40,2,15,4,2000)ARGUMENT_NUMBER_MISMATCH
    Preondition Violations
    Expression new Millisecond(250,50,45,21,21,4,2001) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new Second(55,40,2,15,4,2000) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new Millisecond(250,50,45,21,21,4,2001) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression new Second(55,40,2,15,4,2000) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    1
    Second s = new Second(55, 40, 2, 15, 4, 2000);
    2
    GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY);
    2
    GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY);
    3
    calendar.setTimeZone(TimeZone.getTimeZone("Europe/Frankfurt"));
    3
    calendar.setTimeZone(TimeZone.getTimeZone("Europe/Frankfurt"));
    4
    assertEquals(987889550250L, m.getLastMillisecond(calendar));
    4
    assertEquals(987889550250L, m.getLastMillisecond(calendar));
    4
    assertEquals(955766455000L, s.getFirstMillisecond(calendar));
    Differences
    Expression1Expression2Difference
    987889550250L955766455000LLITERAL_VALUE_MISMATCH
    getLastMillisecondgetFirstMillisecondMETHOD_INVOCATION_NAME_MISMATCH
    msVARIABLE_NAME_MISMATCH
    org.jfree.data.time.Millisecondorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression m.getLastMillisecond(calendar) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression s.getFirstMillisecond(calendar) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    4
    assertEquals(955766455000L, s.getFirstMillisecond(calendar));
    5
    boolean pass = false;
    5
    boolean pass = false;
    6
    try
    6
    try
    7
    m.getLastMillisecond((Calendar)null);
    7
    m.getLastMillisecond((Calendar)null);
    7
    s.getFirstMillisecond((Calendar)null);
    Differences
    Expression1Expression2Difference
    getLastMillisecondgetFirstMillisecondMETHOD_INVOCATION_NAME_MISMATCH
    msVARIABLE_NAME_MISMATCH
    org.jfree.data.time.Millisecondorg.jfree.data.time.SecondSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression m.getLastMillisecond((Calendar)null) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression s.getFirstMillisecond((Calendar)null) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression m.getLastMillisecond((Calendar)null) is a void method call, and thus it cannot be parameterized
    Expression s.getFirstMillisecond((Calendar)null) is a void method call, and thus it cannot be parameterized
    7
    s.getFirstMillisecond((Calendar)null);
    8
    assertTrue(pass);
    8
    assertTrue(pass);
    Precondition Violations (10)
    Row Violation
    1Expression new Millisecond(250,50,45,21,21,4,2001) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression new Second(55,40,2,15,4,2000) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3Expression new Millisecond(250,50,45,21,21,4,2001) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    4Expression new Second(55,40,2,15,4,2000) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    5Expression m.getLastMillisecond(calendar) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    6Expression s.getFirstMillisecond(calendar) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    7Expression m.getLastMillisecond((Calendar)null) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    8Expression s.getFirstMillisecond((Calendar)null) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    9Expression m.getLastMillisecond((Calendar)null) is a void method call, and thus it cannot be parameterized
    10Expression s.getFirstMillisecond((Calendar)null) is a void method call, and thus it cannot be parameterized