test_1
Posted xinzi7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了test_1相关的知识,希望对你有一定的参考价值。
TEST_F(FooTest, MethodBarDoesAbc) { const std::string input_filepath = "this/package/testdata/myinputfile.dat"; const std::string output_filepath = "this/package/testdata/myoutputfile.dat"; Foo f; EXPECT_EQ(f.Bar(input_filepath, output_filepath), 0); } // Tests that Foo does Xyz. TEST_F(FooTest, DoesXyz) { // Exercises the Xyz feature of Foo. } } // namespace } // namespace project } // namespace my int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
以上是关于test_1的主要内容,如果未能解决你的问题,请参考以下文章