I have a gtest test fixture for variable parameterized tests and I instantiate the test suite as below:
INSTANTIATE_TEST_SUITE_P(Instantiation, Fixture, ::testing::Range(1, 100));
When I execute the tests, things work like I expect and the tests run 100 times with the right parameters.
However, in Visual Studio 2017, I get a warning (green underline) for INSTANTIATE_TEST_SUITE_P
that informs me that 'Function definition for INSTANTIATE_TEST_SUITE_P not Found'
.
Any ideas on what might be causing this?