@@ -137,12 +137,11 @@ class GTEST_INTERNAL_EMPTY_BASE_CLASS NiceMock
137
137
: private internal::NiceMockImpl<MockClass>,
138
138
public MockClass {
139
139
public:
140
- static_assert (
141
- !internal::HasStrictnessModifier<MockClass>(),
142
- " Can't apply NiceMock to a class hierarchy that already has a "
143
- " strictness modifier. See "
144
- " https://github.com/google/googletest/blob/master/docs/"
145
- " gmock_cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy" );
140
+ static_assert (!internal::HasStrictnessModifier<MockClass>(),
141
+ " Can't apply NiceMock to a class hierarchy that already has a "
142
+ " strictness modifier. See "
143
+ " https://google.github.io/googletest/"
144
+ " gmock_cook_book.html#NiceStrictNaggy" );
146
145
NiceMock () : MockClass() {
147
146
static_assert (sizeof (*this ) == sizeof (MockClass),
148
147
" The impl subclass shouldn't introduce any padding" );
@@ -177,12 +176,11 @@ template <class MockClass>
177
176
class GTEST_INTERNAL_EMPTY_BASE_CLASS NaggyMock
178
177
: private internal::NaggyMockImpl<MockClass>,
179
178
public MockClass {
180
- static_assert (
181
- !internal::HasStrictnessModifier<MockClass>(),
182
- " Can't apply NaggyMock to a class hierarchy that already has a "
183
- " strictness modifier. See "
184
- " https://github.com/google/googletest/blob/master/docs/"
185
- " gmock_cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy" );
179
+ static_assert (!internal::HasStrictnessModifier<MockClass>(),
180
+ " Can't apply NaggyMock to a class hierarchy that already has a "
181
+ " strictness modifier. See "
182
+ " https://google.github.io/googletest/"
183
+ " gmock_cook_book.html#NiceStrictNaggy" );
186
184
187
185
public:
188
186
NaggyMock () : MockClass() {
@@ -224,8 +222,8 @@ class GTEST_INTERNAL_EMPTY_BASE_CLASS StrictMock
224
222
!internal::HasStrictnessModifier<MockClass>(),
225
223
" Can't apply StrictMock to a class hierarchy that already has a "
226
224
" strictness modifier. See "
227
- " https://github.com/google/ googletest/blob/master/docs /"
228
- " gmock_cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy " );
225
+ " https://google. github.io/ googletest/"
226
+ " gmock_cook_book.html#NiceStrictNaggy " );
229
227
StrictMock () : MockClass() {
230
228
static_assert (sizeof (*this ) == sizeof (MockClass),
231
229
" The impl subclass shouldn't introduce any padding" );
0 commit comments