Clarify that this-> is needed to access members of type-parameterized tests.

PiperOrigin-RevId: 451439108
Change-Id: I8929df21d53cbe6c42e38653e1bb0cac72fc36f9
This commit is contained in:
elixir 2022-05-27 11:31:26 -07:00 committed by Copybara-Service
parent 28356773cb
commit 6cd3823783

View File

@ -1313,6 +1313,7 @@ First, define a fixture class template, as we did with typed tests:
```c++
template <typename T>
class FooTest : public testing::Test {
void DoSomethingInteresting();
...
};
```
@ -1330,6 +1331,9 @@ this as many times as you want:
TYPED_TEST_P(FooTest, DoesBlah) {
// Inside a test, refer to TypeParam to get the type parameter.
TypeParam n = 0;
// You will need to use `this` explicitly to refer to fixture members.
this->DoSomethingInteresting()
...
}