我正在使用 Google Test 来测试我的 C++ 项目。但是,在某些情况下,需要访问 argc 和 argv 才能加载所需的数据。
在main()
方法中,在初始化的时候,将argc和argv传递给testing的构造函数。
testing::InitGoogleTest(&argc, argv);
我如何在稍后的测试中访问它们?
TEST(SomeClass, myTest)
{
// Here I would need to have access to argc and argv
}