Browse Source

Mock copy assignment operator added.

main
offa 3 years ago
parent
commit
3285bbc0dc
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      test/CallMocks.h

+ 2
- 0
test/CallMocks.h View File

@@ -179,6 +179,8 @@ namespace mock
{
CopyMock() { }
CopyMock(const CopyMock&) { }

CopyMock& operator=(const CopyMock&) = default;
};

struct ConditionalThrowOnCopyDeleter

Loading…
Cancel
Save