Package org.powermock.classloading

Examples of org.powermock.classloading.DeepCloner


    }

    @Test
    public void clonesJavaInstances() throws Exception {
        final URL original = new URL("http://www.powermock.org");
        URL clone = new DeepCloner().clone(original);
        assertEquals(clone, original);
        assertNotSame(clone, original);
    }
View Full Code Here


    }

    @Test
    public void clonesUnmodifiableLists() throws Exception {
        final UnmodifiableListExample original = new UnmodifiableListExample();
        UnmodifiableListExample clone = new DeepCloner().clone(original);
        assertEquals(clone, original);
        assertNotSame(clone, original);
    }
View Full Code Here

    }

    @Test
    public void clonesArraysWithNullValues() throws Exception {
        Object[] original = new Object[] { "Test", null };
        Object[] clone = new DeepCloner().clone(original);
        assertArrayEquals(clone, original);
        assertNotSame(clone, original);
    }
View Full Code Here

public class XStreamDeepClonerTest {

    @Test
    public void clonesJavaInstances() throws Exception {
        final URL original = new URL("http://www.powermock.org");
        URL clone = new DeepCloner().clone(original);
        assertEquals(clone, original);
        assertNotSame(clone, original);
    }
View Full Code Here

    }

    @Test
    public void clonesUnmodifiableLists() throws Exception {
        final UnmodifiableListExample original = new UnmodifiableListExample();
        UnmodifiableListExample clone = new DeepCloner().clone(original);
        assertEquals(clone, original);
        assertNotSame(clone, original);
    }
View Full Code Here

    }

    @Test
    public void clonesArraysWithNullValues() throws Exception {
        Object[] original = new Object[] { "Test", null };
        Object[] clone = new DeepCloner().clone(original);
        assertArrayEquals(clone, original);
        assertNotSame(clone, original);
    }
View Full Code Here

TOP

Related Classes of org.powermock.classloading.DeepCloner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.