Googletest (GTest) 允许您通过添加禁用单个测试
已禁用_
测试名称的前缀。
参数化测试怎么样——我如何禁用它们?将前缀添加到测试名称不会禁用它们。
例如,如何禁用 GTest文档提供的示例测试:
class FooTest : public ::testing::TestWithParam<const char*> {
// You can implement all the usual fixture class members here.
// To access the test parameter, call GetParam() from class
// TestWithParam<T>.
};
TEST_P(FooTest, HasBlahBlah) {
...
}
INSTANTIATE_TEST_CASE_P(InstantiationName,
FooTest,
::testing::Values("meeny", "miny", "moe"));