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

import junit.framework.TestCase;

public class PNodeCacheTest extends TestCase {
    public void testClone() {
        PNodeCache line = new PNodeCache();       
        PNodeCache cloned = (PNodeCache) line.clone();
        assertNotNull(cloned);                   
    }
}