| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_clock.h" | 5 #include "net/quic/platform/api/quic_clock.h" |
| 6 | 6 |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace net { | 9 namespace net { |
| 10 namespace test { | 10 namespace test { |
| 11 | 11 |
| 12 TEST(QuicClockTest, Now) { | 12 TEST(QuicClockTest, Now) { |
| 13 QuicClock clock; | 13 QuicClock clock; |
| 14 | 14 |
| 15 QuicTime start(base::TimeTicks::Now()); | 15 QuicTime start(base::TimeTicks::Now()); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 // If end > start, then we can check now is between start and end. | 30 // If end > start, then we can check now is between start and end. |
| 31 if (end > start) { | 31 if (end > start) { |
| 32 EXPECT_LE(static_cast<uint64_t>(start.ToTimeT()), now.ToUNIXSeconds()); | 32 EXPECT_LE(static_cast<uint64_t>(start.ToTimeT()), now.ToUNIXSeconds()); |
| 33 EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64_t>(end.ToTimeT())); | 33 EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64_t>(end.ToTimeT())); |
| 34 } | 34 } |
| 35 } | 35 } |
| 36 | 36 |
| 37 } // namespace test | 37 } // namespace test |
| 38 } // namespace net | 38 } // namespace net |
| OLD | NEW |