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

Side by Side Diff: mojo/public/cpp/system/tests/macros_unittest.cc

Issue 2244503002: mojo/public: Include gtest.h as "gtest/gtest.h", instead of via "absolute" path. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This file tests the C++ Mojo system macros and consists of "positive" tests, 5 // This file tests the C++ Mojo system macros and consists of "positive" tests,
6 // i.e., those verifying that things work (without compile errors, or even 6 // i.e., those verifying that things work (without compile errors, or even
7 // warnings if warnings are treated as errors). 7 // warnings if warnings are treated as errors).
8 // TODO(vtl): Fix no-compile tests (which are all disabled; crbug.com/105388) 8 // TODO(vtl): Fix no-compile tests (which are all disabled; crbug.com/105388)
9 // and write some "negative" tests. 9 // and write some "negative" tests.
10 10
11 #include "mojo/public/cpp/system/macros.h" 11 #include "mojo/public/cpp/system/macros.h"
12 12
13 #include <assert.h> 13 #include <assert.h>
14 #include <stdint.h> 14 #include <stdint.h>
15 #include <stdlib.h> 15 #include <stdlib.h>
16 16
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "gtest/gtest.h"
18 18
19 namespace mojo { 19 namespace mojo {
20 namespace { 20 namespace {
21 21
22 // Note: MSVS is very strict (and arguably buggy) about warnings for classes 22 // Note: MSVS is very strict (and arguably buggy) about warnings for classes
23 // defined in a local scope, so define these globally. 23 // defined in a local scope, so define these globally.
24 struct TestOverrideBaseClass { 24 struct TestOverrideBaseClass {
25 virtual ~TestOverrideBaseClass() {} 25 virtual ~TestOverrideBaseClass() {}
26 virtual void ToBeOverridden() {} 26 virtual void ToBeOverridden() {}
27 virtual void AlsoToBeOverridden() = 0; 27 virtual void AlsoToBeOverridden() = 0;
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 int ReturnsIntYouMustUse() { 132 int ReturnsIntYouMustUse() {
133 return 123; 133 return 123;
134 } 134 }
135 135
136 TEST(MacrosTest, IgnoreResult) { 136 TEST(MacrosTest, IgnoreResult) {
137 ignore_result(ReturnsIntYouMustUse()); 137 ignore_result(ReturnsIntYouMustUse());
138 } 138 }
139 139
140 } // namespace 140 } // namespace
141 } // namespace mojo 141 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/public/cpp/system/tests/handle_unittest.cc ('k') | mojo/public/cpp/system/tests/message_pipe_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698