summaryrefslogtreecommitdiffstats
path: root/docs/advanced.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/advanced.md')
-rw-r--r--docs/advanced.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/advanced.md b/docs/advanced.md
index 7d81162..a89d837 100644
--- a/docs/advanced.md
+++ b/docs/advanced.md
@@ -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()
...
}