aboutsummaryrefslogtreecommitdiffstats
path: root/test/gmock_test_utils.py
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2013-09-06 22:52:14 +0000
committerzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2013-09-06 22:52:14 +0000
commit45fef502fac471efa4bf25b3d4104943463912eb (patch)
tree9993cd7a492e5012bb4523db13038bd6dbf29a05 /test/gmock_test_utils.py
parent778358e3f1815737f9d13eacb1346e1b2fb41cdc (diff)
downloadgoogletest-45fef502fac471efa4bf25b3d4104943463912eb.tar.gz
googletest-45fef502fac471efa4bf25b3d4104943463912eb.tar.bz2
googletest-45fef502fac471efa4bf25b3d4104943463912eb.zip
makes googlemock generator handle some class templates; pulls in gtest r662
Diffstat (limited to 'test/gmock_test_utils.py')
-rwxr-xr-xtest/gmock_test_utils.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/gmock_test_utils.py b/test/gmock_test_utils.py
index ac3d67ae..20e3d3d4 100755
--- a/test/gmock_test_utils.py
+++ b/test/gmock_test_utils.py
@@ -96,11 +96,12 @@ def GetExitStatus(exit_code):
# Suppresses the "Invalid const name" lint complaint
# pylint: disable-msg=C6409
-# Exposes Subprocess from gtest_test_utils.
+# Exposes utilities from gtest_test_utils.
Subprocess = gtest_test_utils.Subprocess
-
-# Exposes TestCase from gtest_test_utils.
TestCase = gtest_test_utils.TestCase
+environ = gtest_test_utils.environ
+SetEnvVar = gtest_test_utils.SetEnvVar
+PREMATURE_EXIT_FILE_ENV_VAR = gtest_test_utils.PREMATURE_EXIT_FILE_ENV_VAR
# pylint: enable-msg=C6409