aboutsummaryrefslogtreecommitdiff
path: root/tools/clang/rewrite_to_chrome_style/tests/gmock-original.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/clang/rewrite_to_chrome_style/tests/gmock-original.cc')
-rw-r--r--tools/clang/rewrite_to_chrome_style/tests/gmock-original.cc28
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/clang/rewrite_to_chrome_style/tests/gmock-original.cc b/tools/clang/rewrite_to_chrome_style/tests/gmock-original.cc
new file mode 100644
index 00000000..102bf1a4
--- /dev/null
+++ b/tools/clang/rewrite_to_chrome_style/tests/gmock-original.cc
@@ -0,0 +1,28 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "gmock/gmock.h"
+
+namespace blink {
+
+class Interface {
+ public:
+ virtual void myMethod(int my_param) {}
+};
+
+class MockedInterface : public Interface {
+ public:
+ MOCK_METHOD1(myMethod, void(int));
+};
+
+void test() {
+ MockedInterface mockedInterface;
+ EXPECT_CALL(mockedInterface, myMethod(1));
+ EXPECT_CALL(
+ mockedInterface, // A comment to prevent reformatting into single line.
+ myMethod(1));
+ mockedInterface.myMethod(123);
+}
+
+} // namespace blink