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

Side by Side Diff: rlz/lib/lib_values_unittest.cc

Issue 10659022: Revert 144071 - Add a regenerate button to regenerate the password in Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « rlz/lib/lib_values.cc ('k') | rlz/lib/machine_id.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
OLDNEW
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 "rlz/lib/lib_values.h" 5 #include "rlz/lib/lib_values.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "rlz/lib/assert.h" 8 #include "rlz/lib/assert.h"
9 #include "testing/gmock/include/gmock/gmock.h" 9 #include "testing/gmock/include/gmock/gmock.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 EXPECT_TRUE(rlz_lib::GetEventFromName("I", &event)); 53 EXPECT_TRUE(rlz_lib::GetEventFromName("I", &event));
54 EXPECT_EQ(rlz_lib::INSTALL, event); 54 EXPECT_EQ(rlz_lib::INSTALL, event);
55 55
56 EXPECT_TRUE(rlz_lib::GetEventFromName("F", &event)); 56 EXPECT_TRUE(rlz_lib::GetEventFromName("F", &event));
57 EXPECT_EQ(rlz_lib::FIRST_SEARCH, event); 57 EXPECT_EQ(rlz_lib::FIRST_SEARCH, event);
58 58
59 EXPECT_FALSE(rlz_lib::GetEventFromName("F ", &event)); 59 EXPECT_FALSE(rlz_lib::GetEventFromName("F ", &event));
60 EXPECT_EQ(rlz_lib::INVALID_EVENT, event); 60 EXPECT_EQ(rlz_lib::INVALID_EVENT, event);
61 } 61 }
OLDNEW
« no previous file with comments | « rlz/lib/lib_values.cc ('k') | rlz/lib/machine_id.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698