OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "net/ftp/ftp_directory_listing_parser_unittest.h" | 5 #include "net/ftp/ftp_directory_listing_parser_unittest.h" |
6 | 6 |
7 #include "base/format_macros.h" | 7 #include "base/format_macros.h" |
8 #include "base/string_split.h" | |
9 #include "base/string_util.h" | 8 #include "base/string_util.h" |
10 #include "base/stringprintf.h" | 9 #include "base/stringprintf.h" |
| 10 #include "base/strings/string_split.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "net/ftp/ftp_directory_listing_parser_vms.h" | 12 #include "net/ftp/ftp_directory_listing_parser_vms.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
18 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserVmsTest; | 18 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserVmsTest; |
19 | 19 |
20 TEST_F(FtpDirectoryListingParserVmsTest, Good) { | 20 TEST_F(FtpDirectoryListingParserVmsTest, Good) { |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 std::vector<FtpDirectoryListingEntry> entries; | 158 std::vector<FtpDirectoryListingEntry> entries; |
159 EXPECT_FALSE(ParseFtpDirectoryListingVms(lines, | 159 EXPECT_FALSE(ParseFtpDirectoryListingVms(lines, |
160 &entries)); | 160 &entries)); |
161 } | 161 } |
162 } | 162 } |
163 } | 163 } |
164 | 164 |
165 } // namespace | 165 } // namespace |
166 | 166 |
167 } // namespace net | 167 } // namespace net |
OLD | NEW |