1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.net.telnet;
18
19
20
21
22
23
24 public class SuppressGAOptionHandlerTest extends TelnetOptionHandlerTestAbstract
25 {
26
27
28
29
30 @Override
31 protected void setUp()
32 {
33 opthand1 = new SuppressGAOptionHandler();
34 opthand2 = new SuppressGAOptionHandler(true, true, true, true);
35 opthand3 = new SuppressGAOptionHandler(false, false, false, false);
36 }
37
38
39
40
41 @Override
42 public void testConstructors()
43 {
44 assertEquals(opthand1.getOptionCode(), TelnetOption.SUPPRESS_GO_AHEAD);
45 super.testConstructors();
46 }
47
48
49
50
51
52 @Override
53 public void testStartSubnegotiation()
54 {
55
56 int resp1[] = opthand1.startSubnegotiationLocal();
57 int resp2[] = opthand1.startSubnegotiationRemote();
58
59 assertEquals(resp1, null);
60 assertEquals(resp2, null);
61 }
62
63
64
65
66
67 @Override
68 public void testAnswerSubnegotiation()
69 {
70 int subn[] =
71 {
72 TelnetCommand.IAC, TelnetCommand.SB, TelnetOption.SUPPRESS_GO_AHEAD,
73 1, TelnetCommand.IAC, TelnetCommand.SE,
74 };
75
76 int resp1[] = opthand1.answerSubnegotiation(subn, subn.length);
77
78 assertEquals(resp1, null);
79 }
80 }