Package com.neophob.sematrix.core.sound

Examples of com.neophob.sematrix.core.sound.SoundDummy


      //if unit test is run in eclipse
      rootDir = "."+File.separatorChar;
    }
      ph = new ApplicationConfigurationHelper(new Properties());
      fileUtils = new FileUtilsJunit();
      sound = new SoundDummy();
      resize = new PixelResize();
      col = new ColorSet("test", new int[]{1,2,3});
     
      for (int x=1; x<maxResolution; x++) {
        for (int y=1; y<maxResolution; y++) {
View Full Code Here


        LOG.log(Level.WARNING, "FAILED TO INITIALIZE SOUND INSTANCE (Error). Disable sound input.", e);     
      }     
    }

    if (sound==null) {
      sound = new SoundDummy();
    }

    //create the device with specific size
    this.matrix = new MatrixData(ph.getDeviceXResolution(), ph.getDeviceYResolution());
View Full Code Here

  private ISound sound;
 
    @Test
    public void verifyEffectsDoNotCrash() throws Exception {
      final int maxResolution = 17;
      sound = new SoundDummy();
     
      for (int x=1; x<maxResolution; x++) {
        for (int y=1; y<maxResolution; y++) {
          testWithResolution(x,y);
          testWithResolution(y,x);
View Full Code Here

  private ISound sound;
 
    @Test
    public void verifyMixersDoNotCrash() throws Exception {
      final int maxResolution = 17;
      sound = new SoundDummy();
     
      for (int x=1; x<maxResolution; x++) {
        for (int y=1; y<maxResolution; y++) {
          testWithResolution(x,y);
          testWithResolution(y,x);
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.sound.SoundDummy

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.