diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-08-29 23:59:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-29 23:59:32 -0400 |
commit | 5bd8e832177f578a6393417665d08953d9552e67 (patch) | |
tree | 49b70f98965727a2aabe03e552e4585160966a49 /googlemock/include | |
parent | daaed2b6cb7ba4165636a7de20a691e4e78a7d38 (diff) | |
parent | 298cd5e9c4230d35b7420f0ceec144c6e2cff57c (diff) | |
download | googletest-5bd8e832177f578a6393417665d08953d9552e67.tar.gz googletest-5bd8e832177f578a6393417665d08953d9552e67.tar.bz2 googletest-5bd8e832177f578a6393417665d08953d9552e67.zip |
Merge branch 'master' into hethi/fix-typo
Diffstat (limited to 'googlemock/include')
-rw-r--r-- | googlemock/include/gmock/gmock-spec-builders.h | 1 | ||||
-rw-r--r-- | googlemock/include/gmock/gmock.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/include/gmock/gmock-spec-builders.h b/googlemock/include/gmock/gmock-spec-builders.h index 39f72129..96802444 100644 --- a/googlemock/include/gmock/gmock-spec-builders.h +++ b/googlemock/include/gmock/gmock-spec-builders.h @@ -363,7 +363,6 @@ enum CallReaction { kAllow, kWarn, kFail, - kDefault = kWarn // By default, warn about uninteresting calls. }; } // namespace internal diff --git a/googlemock/include/gmock/gmock.h b/googlemock/include/gmock/gmock.h index 6735c71b..5764bc85 100644 --- a/googlemock/include/gmock/gmock.h +++ b/googlemock/include/gmock/gmock.h @@ -71,6 +71,7 @@ namespace testing { // Declares Google Mock flags that we want a user to use programmatically. GMOCK_DECLARE_bool_(catch_leaked_mocks); GMOCK_DECLARE_string_(verbose); +GMOCK_DECLARE_int32_(default_mock_behavior); // Initializes Google Mock. This must be called before running the // tests. In particular, it parses the command line for the flags |