*/
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"));
}