在 Xcode 中创建一个新的 "Shell Tool" 目标以供 Google 测试使用

Create a new "Shell Tool" target in Xcode for the use of Google Test

我正在尝试添加 googletest framework to my existing C++ project. And I am following their XcodeGuide。但是,我无法克服以下步骤。

  1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests"

所以问题:Xcode 项目的 shell 工具目标是什么。它在 Xcode 中是否仍然可用 6. 如果是,在哪里?如果不是,有什么解决方法吗?

编辑:我不想使用 XCTest,因为 (a) 它不是跨平台的 (b) 它对 Obj-C 的支持很好,但对 C++ 的支持不太好。

创建一个新项目。在创建对话框中,select "Command Line Tool" 作为您的项目类型。这可能是 "Shell Tool." 的意思 它在 Xcode 6.

中可用