The tests from the instantiation above will have these names:
- InstantiationName/FooTest.DoesBlah/0 for "meeny"
- InstantiationName/FooTest.DoesBlah/1 for "miny"
- InstantiationName/FooTest.DoesBlah/2 for "moe"
- InstantiationName/FooTest.HasBlahBlah/0 for "meeny"
- InstantiationName/FooTest.HasBlahBlah/1 for "miny"
- InstantiationName/FooTest.HasBlahBlah/2 for "moe"
You can use these names in --gtest_filter.
InstantiationName/FooTest.
DoesBlah/0 # GetParam() = "meeny"
DoesBlah/1 # GetParam() = "miny"
DoesBlah/2 # GetParam() = "moe"
HasBlahBlah/0 # GetParam() = "meeny"
HasBlahBlah/1 # GetParam() = "miny"
HasBlahBlah/2 # GetParam() = "moe"
InstantiationName/FooTest.
DoesBlah/0 # GetParam() = "meeny"
DoesBlah/1 # GetParam() = "miny"
DoesBlah/2 # GetParam() = "moe"
InstantiationName/FooTest.
DoesBlah/0 # GetParam() = "meeny"
HasBlahBlah/0 # GetParam() = "meeny"