Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: net/quic/crypto/crypto_handshake_test.cc

Issue 12381018: QUIC - Some sketching of the crypto handshake. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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/test_tools/mock_clock.h"
8 #include "net/quic/test_tools/mock_random.h"
wtc 2013/03/01 19:07:58 We should include "net/quic/crypto/quic_random.h".
ramant (doing other things) 2013/03/01 22:02:04 Done.
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 QuicCryptoServerConfig.
16 TEST(QuicCryptoProtocol, ServerConfig) {
17 QuicCryptoServerConfig server;
18 MockClock clock;
19
20 server.AddTestingConfig(QuicRandom::GetInstance(),
21 &clock);
22 }
23
24 } // namespace test
25 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698