Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "net/quic/crypto/crypto_handshake.h" | |
| 6 | |
| 7 #include "net/quic/crypto/quic_random.h" | |
| 8 #include "net/quic/test_tools/mock_clock.h" | |
| 9 #include "testing/gmock/include/gmock/gmock.h" | |
| 10 #include "testing/gtest/include/gtest/gtest.h" | |
| 11 | |
| 12 namespace net { | |
| 13 namespace test { | |
| 14 | |
| 15 // TODO(rtenneti): Delete ServerConfig. | |
| 16 TEST(QuicCryptoProtocol, ServerConfig) { | |
|
wtc
2013/03/01 23:45:23
You should delete this test now.
This means lines
ramant (doing other things)
2013/03/02 00:34:16
Done.
| |
| 17 } | |
| 18 | |
| 19 } // namespace test | |
| 20 } // namespace net | |
| OLD | NEW |