-
```
The new C++11 standard allows for rvalue references in method parameters. Using
those for move semantics is very useful. We need to suppor them, e.g.:
MOCK_METHOD1(mock, foo(int&& i));
```
Orig…
-
```
The new C++11 standard allows for rvalue references in method parameters. Using
those for move semantics is very useful. We need to suppor them, e.g.:
MOCK_METHOD1(mock, foo(int&& i));
```
Orig…
-
```
The new C++11 standard allows for rvalue references in method parameters. Using
those for move semantics is very useful. We need to suppor them, e.g.:
MOCK_METHOD1(mock, foo(int&& i));
```
Orig…
-
```
The new C++11 standard allows for rvalue references in method parameters. Using
those for move semantics is very useful. We need to suppor them, e.g.:
MOCK_METHOD1(mock, foo(int&& i));
```
Orig…
-
```
The new C++11 standard allows for rvalue references in method parameters. Using
those for move semantics is very useful. We need to suppor them, e.g.:
MOCK_METHOD1(mock, foo(int&& i));
```
Orig…
-
```
This method should be added for multiples reasons:
* This is homogeneous with atLeastOnce()
* This is used thorough the examples showing a need for such semantic
* This will ease the diff commit r…
-
```
This method should be added for multiples reasons:
* This is homogeneous with atLeastOnce()
* This is used thorough the examples showing a need for such semantic
* This will ease the diff commit r…
-
This method effectively loads templates via: https://github.com/alkemist/rocker/blob/69881f8863d2f3adcebeea6a308b326b588e5f87/runtime/src/main/java/com/fizzed/rocker/runtime/DefaultRockerBootstrap.jav…
-
It can be tedious work with stubbed / mocked functions. Jasmine and others include a [spy implementation](https://github.com/pivotal/jasmine/wiki/Spies) to make this easier. Chai has a separate plugin…
-
check that
- [X] The mockito message in the stacktrace have useful information, but it didn't help
- [X] The problematic code (if that's possible) is copied here;
Note that some configurat…