Lines Matching refs:kTestCases

21   } kTestCases[] = {
34 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); i++) {
35 EXPECT_EQ(kTestCases[i].expected_output,
36 net::FtpUtil::UnixFilePathToVMS(kTestCases[i].input))
37 << kTestCases[i].input;
45 } kTestCases[] = {
67 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); i++) {
68 EXPECT_EQ(kTestCases[i].expected_output,
69 net::FtpUtil::UnixDirectoryPathToVMS(kTestCases[i].input))
70 << kTestCases[i].input;
78 } kTestCases[] = {
100 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); i++) {
101 EXPECT_EQ(kTestCases[i].expected_output,
102 net::FtpUtil::VMSPathToUnix(kTestCases[i].input))
103 << kTestCases[i].input;
124 } kTestCases[] = {
156 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); i++) {
158 kTestCases[i].month, kTestCases[i].day,
159 kTestCases[i].rest));
163 UTF8ToUTF16(kTestCases[i].month), UTF8ToUTF16(kTestCases[i].day),
164 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
168 EXPECT_EQ(kTestCases[i].expected_year, time_exploded.year);
169 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
170 EXPECT_EQ(kTestCases[i].expected_day_of_month, time_exploded.day_of_month);
171 EXPECT_EQ(kTestCases[i].expected_hour, time_exploded.hour);
172 EXPECT_EQ(kTestCases[i].expected_minute, time_exploded.minute);
183 } kTestCases[] = {
195 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); i++) {
197 kTestCases[i].text, kTestCases[i].column));
199 EXPECT_EQ(ASCIIToUTF16(kTestCases[i].expected_result),
201 ASCIIToUTF16(kTestCases[i].text), kTestCases[i].column));