码迷,mamicode.com
首页 > 其他好文 > 详细

test_1

时间:2020-11-17 11:48:25      阅读:6      评论:0      收藏:0      [点我收藏+]

标签:str   ons   eth   ret   char   ring   The   ODB   project   

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

标签:str   ons   eth   ret   char   ring   The   ODB   project   

原文地址:https://www.cnblogs.com/xinzi7/p/13956805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!