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

Side by Side Diff: mojo/public/cpp/bindings/tests/constant_unittest.cc

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "mojo/public/interfaces/bindings/tests/test_constants.mojom.h"
5 #include "testing/gtest/include/gtest/gtest.h" 6 #include "testing/gtest/include/gtest/gtest.h"
6 #include "third_party/mojo/src/mojo/public/interfaces/bindings/tests/test_consta nts.mojom.h"
7 7
8 namespace mojo { 8 namespace mojo {
9 namespace test { 9 namespace test {
10 10
11 TEST(ConstantTest, GlobalConstants) { 11 TEST(ConstantTest, GlobalConstants) {
12 // Compile-time constants. 12 // Compile-time constants.
13 static_assert(kBoolValue == true, ""); 13 static_assert(kBoolValue == true, "");
14 static_assert(kInt8Value == -2, ""); 14 static_assert(kInt8Value == -2, "");
15 static_assert(kUint8Value == 128U, ""); 15 static_assert(kUint8Value == 128U, "");
16 static_assert(kInt16Value == -233, ""); 16 static_assert(kInt16Value == -233, "");
(...skipping 16 matching lines...) Expand all
33 33
34 TEST(ConstantTest, InterfaceConstants) { 34 TEST(ConstantTest, InterfaceConstants) {
35 // Compile-time constants. 35 // Compile-time constants.
36 static_assert(InterfaceWithConstants::kUint32Value == 20100722, ""); 36 static_assert(InterfaceWithConstants::kUint32Value == 20100722, "");
37 37
38 EXPECT_DOUBLE_EQ(InterfaceWithConstants::kDoubleValue, 12.34567); 38 EXPECT_DOUBLE_EQ(InterfaceWithConstants::kDoubleValue, 12.34567);
39 } 39 }
40 40
41 } // namespace test 41 } // namespace test
42 } // namespace mojo 42 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/connector_unittest.cc ('k') | mojo/public/cpp/bindings/tests/container_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698