Package test_cases

Source Code of test_cases.Init_szekvencia

package test_cases;

import game_timer.GameTimer;
import logger.Logger;
import map.Map;

/**
* Ez a teszteset a k�vetkez� helyzetet reprezent�lja:
* Init szekvencia.
*
*/

public class Init_szekvencia extends Abstract_TestCase{
  private Map m = null;
 
  /**
   * A teszteset konstruktora:
   * - l�trehozza az el�felt�teleket
   * - megh�vja a sz�ks�ges met�dusokat
   */
  public Init_szekvencia(){
    clearScreen();
   
    Logger.get().addOrdinaryMessage("___________Init szekvencia!___________");
    GameTimer.setNotifyEnabled(false); //turn off Notifing.
    //create map... and give it the control
    m = new Map();
    Logger.get().finishLogging();
    returnToMainMenu();
  }
}
TOP

Related Classes of test_cases.Init_szekvencia

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.