如何将参数传递给gtest

时间:2011-01-27 16:12:10

标签: c++ unit-testing googletest

如何将参数传递给我的测试套件?

gtest --number-of-input=5

我有以下主要gtest代码。 --number-of-input=5应传递给InitGoogleTest()。

#include <iostream>
#include <gtest/gtest.h>

int main(int argc, char **argv) {
  std::cout << "Running main() from gtest_main.cc\n";
  ::testing::GTEST_FLAG(output) = "xml:hello.xml";
  testing::InitGoogleTest(&argc, argv);

  return RUN_ALL_TESTS();
}

我不知道如何将我的参数传递给测试套件/案例,如下所示?

class TestTwo : public QuickTest {
 protected:
  virtual void SetUp() {
      QuickTest::SetUp();
      square = new Square(10);
      circle = new Circle(10);

  }

  virtual void TearDown() {
      delete square;
      delete circle;
      QuickTest::TearDown();
  }

  Square* square;
  Circle* circle;
};


// Now, let's write tests using the QueueTest fixture.

// Tests the default constructor.
TEST_F(TestOne, DefaultConstructor) {
  EXPECT_EQ(100.0, square->area());
}
TEST_F(TestOne, DefaultDestructor) {
  EXPECT_EQ(1,1);
}
TEST_F(TestOne, VHDL_EMIT_Passthrough) {
  EXPECT_EQ(1,1);
}
TEST_F(TestOne, VHDL_BUILD_Passthrough) {
  EXPECT_EQ(1,1);
}

添加

我修改了main方法,以便在InitGoogleTest()之后显示argv [i]。

int main(int argc, char **argv) {
    std::cout << "Running main() from gtest_main.cc\n";
    ::testing::GTEST_FLAG(output) = "xml:hello.xml";
    testing::InitGoogleTest(&argc, argv);

    for (int i = 0; i < argc; i++) {
        cout << i << ":" << argv[i] << endl;
    }

这是给予gtest的参数:./s --number-of-input=5 --gtest_filter=Test_Cases1*

结果如下:

Running main() from gtest_main.cc
0:./s
1:--number-of-input=5
Note: Google Test filter = Test_Cases1*
[==========] Running 0 tests from 0 test cases.
[==========] 0 tests from 0 test cases ran. (0 ms total)
[  PASSED  ] 0 tests.

gtest会筛选出不具有Test_Cases1名称的测试,并且除了那些以gtest开头的参数外,它还会显示正确的参数。

参考 - How to run specific test cases in GoogleTest

1 个答案:

答案 0 :(得分:45)

Google Test仅识别自己的命令行选项。每次找到一个,它都会从argv中删除它并相应地更新argc,因此在InitGoogleTest返回后,argv中遗留的任何内容都可供您自行处理。使用您最喜欢的命令行解析技术,将结果存储在某个全局变量中,并在测试期间引用它。

如果命令行选项看起来像 Google测试选项但实际上不是,那么程序将打印其帮助消息并退出而不运行任何测试。 Google测试选项以gtest_开头。