1 package cz.cuni.amis.pogamut.ut2004.bot.navigation2;
2
3 import cz.cuni.amis.pogamut.ut2004.bot.UT2004BotTest;
4 import org.junit.Test;
5
6
7
8
9
10
11
12
13
14
15
16
17
18 public class UT2004Test011_JumpUp extends UT2004BotTest {
19
20 @Override
21 protected String getMapName() {
22 return "DM-Compressed";
23 }
24
25 @Override
26 protected String getGameType() {
27 return "BotDeathMatch";
28 }
29
30 @Test
31 public void testJumpUp_1_time() {
32 startTest(
33
34 Navigation2TestBot.class,
35
36 1,
37
38 new Navigation2TestBotParameters("DM-Compressed.PathNode18", "DM-Compressed.JumpSpot22",1)
39 );
40 }
41
42 @Test
43 public void testJumpUp_20_times() {
44 startTest(
45
46 Navigation2TestBot.class,
47
48 5,
49
50 new Navigation2TestBotParameters("DM-Compressed.PathNode18", "DM-Compressed.JumpSpot22", 20)
51 );
52 }
53 }