package cz.cuni.amis.pogamut.ut2004.bot.navigation;

import cz.cuni.amis.pogamut.ut2004.bot.UT2004BotTest;
import org.junit.Test;

/**
 *
 * @author Peta Michalik
 */
public class [CLASS] extends UT2004BotTest {

	@Override
	protected String getMapName() {
		return "[MAP]";
	}

	@Override
	protected String getGameType() {
		return "BotDeathMatch";
	}

        @Test
	public void test[TNUMBER]_[TTYPE]_1_time() {
		startTest(
			// use NavigationTestBot for the test
			NavigationTestBot.class,
			// timeout: 1 minute
			1,
			// test movement between        start: [MAP].[START], end: [MAP].[END] number of repetitions   both ways
			new NavigationTestBotParameters("[MAP].[START]",      "[MAP].[END]",    1,                        true)
		);
	}

        @Test
	public void test[TNUMBER]_[TTYPE]_20_time() {


		startTest(
			// use NavigationTestBot for the test
			NavigationTestBot.class,
			// timeout: 10 minutes
			10,
			// test movement between        start: [MAP].[START], end: [MAP].[END] number of repetitions   both ways
			new NavigationTestBotParameters("[MAP].[START]",      "[MAP].[END]",    20,                        true)
		);
	}

}