OLD | NEW |
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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/quic/core/quic_frames.h" | 5 #include "net/quic/core/frames/quic_frame.h" |
6 | 6 |
7 #include "testing/gmock/include/gmock/gmock.h" | 7 #include "testing/gmock/include/gmock/gmock.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 namespace test { | 11 namespace test { |
12 namespace { | 12 namespace { |
13 | 13 |
14 using testing::_; | 14 using testing::_; |
15 | 15 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 EXPECT_EQ(2u, queue.NumIntervals()); | 265 EXPECT_EQ(2u, queue.NumIntervals()); |
266 EXPECT_TRUE(queue.Contains(10)); | 266 EXPECT_TRUE(queue.Contains(10)); |
267 EXPECT_TRUE(queue.Contains(11)); | 267 EXPECT_TRUE(queue.Contains(11)); |
268 EXPECT_TRUE(queue.Contains(20)); | 268 EXPECT_TRUE(queue.Contains(20)); |
269 EXPECT_TRUE(queue.Contains(21)); | 269 EXPECT_TRUE(queue.Contains(21)); |
270 } | 270 } |
271 | 271 |
272 } // namespace | 272 } // namespace |
273 } // namespace test | 273 } // namespace test |
274 } // namespace net | 274 } // namespace net |
OLD | NEW |