Package net.pms.formats

Examples of net.pms.formats.FLAC


     */
    @Test
  public void testFormatIdentifiers() {
    // Identifier tests based on the identifiers defined in getId() of each class
    assertEquals("DVRMS matches \"test.dvr\"", true, new DVRMS().match("test.dvr"));
    assertEquals("FLAC matches \"test.flac\"", true, new FLAC().match("test.flac"));
    assertEquals("GIF matches \"test.gif\"", true, new GIF().match("test.gif"));
    assertEquals("ISO matches \"test.iso\"", true, new ISO().match("test.iso"));
    assertEquals("JPG matches \"test.jpg\"", true, new JPG().match("test.jpg"));
    assertEquals("M4A matches \"test.wma\"", true, new M4A().match("test.wma"));
    assertEquals("MKV matches \"test.mkv\"", true, new MKV().match("test.mkv"));
View Full Code Here

TOP

Related Classes of net.pms.formats.FLAC

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.