OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Tests TelnetServer. | 5 // Tests TelnetServer. |
6 | 6 |
7 #include "net/base/listen_socket_unittest.h" | 7 #include "net/base/listen_socket_unittest.h" |
8 #include "net/base/telnet_server.h" | 8 #include "net/base/telnet_server.h" |
9 #include "testing/platform_test.h" | 9 #include "testing/platform_test.h" |
10 | 10 |
(...skipping 49 matching lines...) Loading... |
60 tester_->TestClientSend(); | 60 tester_->TestClientSend(); |
61 } | 61 } |
62 | 62 |
63 TEST_F(TelnetServerTest, ClientSendLong) { | 63 TEST_F(TelnetServerTest, ClientSendLong) { |
64 tester_->TestClientSendLong(); | 64 tester_->TestClientSendLong(); |
65 } | 65 } |
66 | 66 |
67 TEST_F(TelnetServerTest, ServerSend) { | 67 TEST_F(TelnetServerTest, ServerSend) { |
68 tester_->TestServerSend(); | 68 tester_->TestServerSend(); |
69 } | 69 } |
70 | |
OLD | NEW |