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

import junit.framework.TestCase;

public class PCacheCameraTest extends TestCase {
    public void testClone() {
        PCacheCamera camera = new PCacheCamera();        
        PCacheCamera cloned = (PCacheCamera) camera.clone();
        assertNotNull(cloned);      
    }
}