diff options
| author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-02-27 14:39:41 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-27 14:39:41 -0500 | 
| commit | a9f2368dc07c35e580ffa950fa0d70cf22475bfe (patch) | |
| tree | a243e9878e02a7df43e95a49309fc9dd7ebb1a31 /googlemock/test | |
| parent | ce61dc54a20f00c474724d2af8bac5a2f3ebb206 (diff) | |
| parent | ba40fd1456955be675d2f1cfa92aa8e71ffc8130 (diff) | |
| download | googletest-a9f2368dc07c35e580ffa950fa0d70cf22475bfe.tar.gz googletest-a9f2368dc07c35e580ffa950fa0d70cf22475bfe.tar.bz2 googletest-a9f2368dc07c35e580ffa950fa0d70cf22475bfe.zip  | |
Merge pull request #1483 from gennadiycivil/master
gmock merging -2
Diffstat (limited to 'googlemock/test')
| -rw-r--r-- | googlemock/test/gmock_link_test.h | 24 | 
1 files changed, 22 insertions, 2 deletions
diff --git a/googlemock/test/gmock_link_test.h b/googlemock/test/gmock_link_test.h index 1f55f5bd..5f855d19 100644 --- a/googlemock/test/gmock_link_test.h +++ b/googlemock/test/gmock_link_test.h @@ -120,13 +120,15 @@  # include <errno.h>  #endif -#include "gmock/internal/gmock-port.h" -#include "gtest/gtest.h"  #include <iostream>  #include <vector> +#include "gtest/gtest.h" +#include "gtest/internal/gtest-port.h" +  using testing::_;  using testing::A; +using testing::Action;  using testing::AllOf;  using testing::AnyOf;  using testing::Assign; @@ -148,6 +150,8 @@ using testing::Invoke;  using testing::InvokeArgument;  using testing::InvokeWithoutArgs;  using testing::IsNull; +using testing::IsSubsetOf; +using testing::IsSupersetOf;  using testing::Le;  using testing::Lt;  using testing::Matcher; @@ -592,6 +596,22 @@ TEST(LinkTest, TestMatcherElementsAreArray) {    ON_CALL(mock, VoidFromVector(ElementsAreArray(arr))).WillByDefault(Return());  } +// Tests the linkage of the IsSubsetOf matcher. +TEST(LinkTest, TestMatcherIsSubsetOf) { +  Mock mock; +  char arr[] = {'a', 'b'}; + +  ON_CALL(mock, VoidFromVector(IsSubsetOf(arr))).WillByDefault(Return()); +} + +// Tests the linkage of the IsSupersetOf matcher. +TEST(LinkTest, TestMatcherIsSupersetOf) { +  Mock mock; +  char arr[] = {'a', 'b'}; + +  ON_CALL(mock, VoidFromVector(IsSupersetOf(arr))).WillByDefault(Return()); +} +  // Tests the linkage of the ContainerEq matcher.  TEST(LinkTest, TestMatcherContainerEq) {    Mock mock;  | 
