Package eu.planets_project.services.utils.test

Examples of eu.planets_project.services.utils.test.FileAccess


*/
public class FileAccessTests {
    @Test
    public void test() {
        /* Get the singleton instance: */
        FileAccess access = FileAccess.INSTANCE;
        /* Get a random BMP file for testing: */
        File file = access.get("bmp");
        /* That file exists and is a BMP: */
        Assert.assertTrue(file.exists());
        Assert.assertTrue(file.getAbsolutePath().endsWith("bmp"));
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.services.utils.test.FileAccess

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.