在 Xcode 现有的项目中添加单元和 UI 测试

假设我在 Xcode 有一个现有的项目,不管出于什么原因,没有添加单元测试或 UI 测试。我可以在 Xcode 7的后面将测试项目添加到项目中吗?

27742 次浏览

Yes!

You can add new test targets for UI and unit tests by navigating File > New > Target > Test. When that's done, add new test cases by navigating File > New > File > Source.

Test Target

Tests are targets.

Select the project in the navigation view then Menu File > New > Target… and Test of the proper SDK.

Choose UI Testing Bundle or Unit Test Bundle.

Repeat the procedure to add the other test bundle.

Follow this steps,it works's fine

1.Select the project.

2.Targets->Click the + button->Add iOS UITesting Bundle or iOS UnitTesting Bundle.

Xcode add test to target

One more variant Xcode 10.2.1 using Test Navigator

  1. ⌘ Command + 6 or View -> Navigators -> Show Test Navigator
  2. Right click or + at the bottom
  3. New Unit Test Target... or New UI Test Target...