blob: 3289e6301da7182ea5fc7689557745dd2ff6f747 [file] [log] [blame]
dpapad@chromium.org3062e6b2012-02-11 03:38:30 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
phajdan.jr@chromium.orgdd43b732010-06-01 23:30:51 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_GTEST_PROD_UTIL_H_
6#define BASE_GTEST_PROD_UTIL_H_
phajdan.jr@chromium.orgdd43b732010-06-01 23:30:51 +09007
8#include "testing/gtest/include/gtest/gtest_prod.h"
9
10// This is a wrapper for gtest's FRIEND_TEST macro that friends
11// test with all possible prefixes. This is very helpful when changing the test
12// prefix, because the friend declarations don't need to be updated.
13//
14// Example usage:
15//
16// class MyClass {
17// private:
18// void MyMethod();
19// FRIEND_TEST_ALL_PREFIXES(MyClassTest, MyMethod);
20// };
21#define FRIEND_TEST_ALL_PREFIXES(test_case_name, test_name) \
22 FRIEND_TEST(test_case_name, test_name); \
23 FRIEND_TEST(test_case_name, DISABLED_##test_name); \
phajdan.jr@chromium.org12310592012-11-02 02:32:30 +090024 FRIEND_TEST(test_case_name, FLAKY_##test_name)
phajdan.jr@chromium.orgdd43b732010-06-01 23:30:51 +090025
dpapad@chromium.org3062e6b2012-02-11 03:38:30 +090026// C++ compilers will refuse to compile the following code:
27//
28// namespace foo {
29// class MyClass {
30// private:
31// FRIEND_TEST_ALL_PREFIXES(MyClassTest, TestMethod);
32// bool private_var;
33// };
34// } // namespace foo
35//
36// class MyClassTest::TestMethod() {
37// foo::MyClass foo_class;
38// foo_class.private_var = true;
39// }
40//
41// Unless you forward declare MyClassTest::TestMethod outside of namespace foo.
dpapad@chromium.orgac7a3852012-02-14 10:19:07 +090042// Use FORWARD_DECLARE_TEST to do so for all possible prefixes.
dpapad@chromium.org3062e6b2012-02-11 03:38:30 +090043//
44// Example usage:
45//
dpapad@chromium.orgac7a3852012-02-14 10:19:07 +090046// FORWARD_DECLARE_TEST(MyClassTest, TestMethod);
dpapad@chromium.org3062e6b2012-02-11 03:38:30 +090047//
48// namespace foo {
49// class MyClass {
50// private:
51// FRIEND_TEST_ALL_PREFIXES(::MyClassTest, TestMethod); // NOTE use of ::
52// bool private_var;
53// };
54// } // namespace foo
55//
56// class MyClassTest::TestMethod() {
57// foo::MyClass foo_class;
58// foo_class.private_var = true;
59// }
60
61#define FORWARD_DECLARE_TEST(test_case_name, test_name) \
dpapad@chromium.orgac7a3852012-02-14 10:19:07 +090062 class test_case_name##_##test_name##_Test; \
63 class test_case_name##_##DISABLED_##test_name##_Test; \
phajdan.jr@chromium.org12310592012-11-02 02:32:30 +090064 class test_case_name##_##FLAKY_##test_name##_Test
dpapad@chromium.org3062e6b2012-02-11 03:38:30 +090065
phajdan.jr@chromium.orgdd43b732010-06-01 23:30:51 +090066#endif // BASE_GTEST_PROD_UTIL_H_