assertEquals("MP3 matches \"test.mp3\"", true, new MP3().match("test.mp3"));
assertEquals("MPG matches \"test.mpg\"", true, new MPG().match("test.mpg"));
assertEquals("OGG matches \"test.ogg\"", true, new OGG().match("test.ogg"));
assertEquals("PNG matches \"test.png\"", true, new PNG().match("test.png"));
assertEquals("RAW matches \"test.arw\"", true, new RAW().match("test.arw"));
assertEquals("TIF matches \"test.tiff\"", true, new TIF().match("test.tiff"));
assertEquals("WAV matches \"test.wav\"", true, new WAV().match("test.wav"));
assertEquals("WEB matches \"http\"", true, new WEB().match("http://test.org/"));
}