我按照位于https://github.com/google/googletest/blob/master/googletest/docs/XcodeGuide.md的说明设置 googletest 以使用 Xcode。但是,这些说明似乎是为 Xcode 3 编写的。本文提到的许多事情在 Xcode 4 中都发生了变化。让 google test 与 Xcode 4 一起工作的正确方法是什么?
问问题
4034 次
2 回答
2
我建议使用开源xcode-googletest以便与 Xcode 测试框架 (XCTest) 集成
于 2015-01-27T14:26:55.650 回答
2
- Follow the instructions located at https://github.com/google/googletest/blob/master/googletest/docs/XcodeGuide.md to build the gtest.framework package.
- Create a new command line tool target.
- Copy the contents of the main.cpp file in the googletest framework into your new main.cpp file for your target. Your main function will kick off the google test.
- Execute the new target when you want to run your unit tests.
于 2012-09-04T22:31:17.927 回答