Newer
Older
piccolo2d.java / extras / src / test / java / edu / umd / cs / piccolox / nodes / PClipTest.java
@Allain Lalonde Allain Lalonde on 20 Oct 2009 288 bytes Adding clone tests to allow for later refactoring.
package edu.umd.cs.piccolox.nodes;

import junit.framework.TestCase;

public class PClipTest extends TestCase {
    public void testClone() {
        PClip clip = new PClip();           
        PClip cloned = (PClip) clip.clone();
        assertNotNull(cloned);      
    }
}