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

Side by Side Diff: src/base/flags-unittest.cc

Issue 520503004: Merge base unit tests into src to be in line with Chrome. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project 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 "src/base/flags.h" 5 #include "src/base/flags.h"
6 #include "testing/gtest/include/gtest/gtest.h" 6 #include "testing/gtest/include/gtest/gtest.h"
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace base { 9 namespace base {
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 TEST(FlagsTest, ClassScope) { 94 TEST(FlagsTest, ClassScope) {
95 Foo::Enums enums; 95 Foo::Enums enums;
96 enums |= Foo::kEnum1; 96 enums |= Foo::kEnum1;
97 enums |= Foo::kEnum2; 97 enums |= Foo::kEnum2;
98 EXPECT_TRUE(enums & Foo::kEnum1); 98 EXPECT_TRUE(enums & Foo::kEnum1);
99 EXPECT_TRUE(enums & Foo::kEnum2); 99 EXPECT_TRUE(enums & Foo::kEnum2);
100 } 100 }
101 101
102 } // namespace base 102 } // namespace base
103 } // namespace v8 103 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698