< prev index next >

test/javax/sound/midi/Gervill/SoftProvider/GetDevice.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @summary Test SoftProvider getDevice method
  26    @modules java.desktop/com.sun.media.sound
  27 */
  28 
  29 import javax.sound.midi.MidiDevice;
  30 import javax.sound.midi.MidiUnavailableException;
  31 import javax.sound.midi.Patch;
  32 import javax.sound.sampled.*;
  33 import javax.sound.midi.MidiDevice.Info;
  34 
  35 import com.sun.media.sound.*;
  36 
  37 public class GetDevice {
  38 
  39     private static void assertEquals(Object a, Object b) throws Exception
  40     {
  41         if(!a.equals(b))
  42             throw new RuntimeException("assertEquals fails!");
  43     }
  44 
  45     private static void assertTrue(boolean value) throws Exception
  46     {
  47         if(!value)
  48             throw new RuntimeException("assertTrue fails!");
  49     }
  50 
  51 
  52     private static class FakeInfo extends Info {
  53         public FakeInfo() {
  54             super("a", "b", "c", "d");
  55         }
  56     }
  57 
  58     public static void main(String[] args) throws Exception {
  59         SoftProvider provider = new SoftProvider();
  60         Info[] infos = provider.getDeviceInfo();
  61         assertTrue(infos.length > 0);
  62         for (int i = 0; i < infos.length; i++) {
  63             assertTrue(infos[i] != null);
  64             MidiDevice d = provider.getDevice(infos[i]);
  65             assertTrue(d instanceof SoftSynthesizer);
  66         }
  67         assertTrue(provider.getDevice(new FakeInfo()) == null);
  68 
  69     }
  70 }


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @summary Test SoftProvider getDevice method
  26    @modules java.desktop/com.sun.media.sound
  27 */
  28 
  29 import javax.sound.midi.MidiDevice;



  30 import javax.sound.midi.MidiDevice.Info;
  31 
  32 import com.sun.media.sound.*;
  33 
  34 public class GetDevice {
  35 
  36     private static void assertEquals(Object a, Object b) throws Exception
  37     {
  38         if(!a.equals(b))
  39             throw new RuntimeException("assertEquals fails!");
  40     }
  41 
  42     private static void assertTrue(boolean value) throws Exception
  43     {
  44         if(!value)
  45             throw new RuntimeException("assertTrue fails!");
  46     }
  47 







  48     public static void main(String[] args) throws Exception {
  49         SoftProvider provider = new SoftProvider();
  50         Info[] infos = provider.getDeviceInfo();
  51         assertTrue(infos.length > 0);
  52         for (int i = 0; i < infos.length; i++) {
  53             assertTrue(infos[i] != null);
  54             MidiDevice d = provider.getDevice(infos[i]);
  55             assertTrue(d instanceof SoftSynthesizer);
  56         }


  57     }
  58 }
< prev index next >