Package com.neophob.sematrix.core.fader

Source Code of com.neophob.sematrix.core.fader.SwitchTest

/**
* Copyright (C) 2011-2013 Michael Vogt <michu@neophob.com>
*
* This file is part of PixelController.
*
* PixelController is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PixelController is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PixelController.  If not, see <http://www.gnu.org/licenses/>.
*/
package com.neophob.sematrix.core.fader;

import static org.junit.Assert.*;

import org.junit.Test;

import com.neophob.sematrix.core.fader.Fader;
import com.neophob.sematrix.core.fader.IFader;
import com.neophob.sematrix.core.fader.Switch;
import com.neophob.sematrix.core.glue.MatrixData;

public class SwitchTest {

    @Test
    public void presetFadeTest() throws Exception {
      final int fps = 50;
     
      MatrixData matrix = new MatrixData(8, 8);
      IFader switchFader = new Switch(matrix, fps);
      assertEquals(Fader.FaderName.SWITCH.getId(), switchFader.getId());

      //special case, the switch fader is always done!
      assertTrue(switchFader.isDone());
      assertFalse(switchFader.isStarted());
     
      switchFader.startFade(99, new int[77]);
      assertTrue(switchFader.isStarted());
     
      switchFader.getBuffer(new int[55], new int[5]);
      switchFader.cleanUp();
    }

   
    @Test
    public void visualFadeTest() throws Exception {
      final int fps = 5000;
     
      MatrixData matrix = new MatrixData(8, 8);
      IFader switchFader = new Switch(matrix, fps);
      assertEquals(Fader.FaderName.SWITCH.getId(), switchFader.getId());

      //special case, the switch fader is always done!
      assertTrue(switchFader.isDone());
      assertFalse(switchFader.isStarted());
     
      switchFader.startFade(99, 1);
      assertTrue(switchFader.isStarted());
     
      switchFader.getBuffer(new int[55], new int[5]);
      switchFader.getBuffer(new int[55], new int[5]);
      switchFader.cleanUp();
    }
   
}
TOP

Related Classes of com.neophob.sematrix.core.fader.SwitchTest

TOP
Copyright © 2018 www.massapi.com. 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.