Package toxi.test

Source Code of toxi.test.FileUtilsTest

package toxi.test;

import java.util.Iterator;

import junit.framework.TestCase;
import toxi.util.FileSequenceDescriptor;
import toxi.util.FileUtils;

public class FileUtilsTest extends TestCase {

    public void testSequence() {
        FileSequenceDescriptor d = FileUtils
                .getFileSequenceDescriptorFor("test/img010.tga");
        assertEquals(3, d.getDuration());
        for (Iterator<String> i = d.iterator(); i.hasNext();) {
            System.out.println(i.next());
        }
    }
}
TOP

Related Classes of toxi.test.FileUtilsTest

TOP
Copyright © 2018 www.massapi.com. 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.