View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.bot.navigation;
2   
3   import cz.cuni.amis.pogamut.ut2004.bot.UT2004BotTest;
4   import org.junit.Test;
5   
6   /**
7    *
8    * @author Peta Michalik
9    */
10  public class UT2004Test339_CTFTwinTombs_JumpDown extends UT2004BotTest {
11  
12  	@Override
13  	protected String getMapName() {
14  		return "CTF-TwinTombs";
15  	}
16  
17  	@Override
18  	protected String getGameType() {
19  		return "BotDeathMatch";
20  	}
21  
22          @Test
23  	public void test339_jumpdown_1_time() {
24  		startTest(
25  			// use NavigationTestBot for the test
26  			NavigationTestBot.class,
27  			// timeout: 1 minute
28  			1,
29  			// test movement between        start: CTF-TwinTombs.InventorySpot240, end: CTF-TwinTombs.InventorySpot265 number of repetitions   both ways
30  			new NavigationTestBotParameters("CTF-TwinTombs.InventorySpot240",      "CTF-TwinTombs.InventorySpot265",    1,                        false)
31  		);
32  	}
33  
34          /*
35           * TODO: Test fails
36           */
37          @Test
38  	public void test339_jumpdown_20_time() {
39  
40  
41  		startTest(
42  			// use NavigationTestBot for the test
43  			NavigationTestBot.class,
44  			// timeout: 8 minutes
45  			8,
46  			// test movement between        start: CTF-TwinTombs.InventorySpot240, end: CTF-TwinTombs.InventorySpot265 number of repetitions   both ways
47  			new NavigationTestBotParameters("CTF-TwinTombs.InventorySpot240",      "CTF-TwinTombs.InventorySpot265",    20,                        false)
48  		);
49  	}
50  
51  }