Skip to content

Commit

Permalink
Add xctest location to FAQ (#99)
Browse files Browse the repository at this point in the history
* Add xctest location to FAQ
* Remove 7 from Xcode FAQ
  • Loading branch information
bootstraponline authored and khandpur committed May 27, 2016
1 parent 665753f commit edab71d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/faq.md
@@ -1,6 +1,6 @@
# FAQ

**How does EarlGrey compare to Xcode 7’s UI Testing?**
**How does EarlGrey compare to Xcode’s UI Testing?**

EarlGrey is more of a [gray-box testing](https://en.wikipedia.org/wiki/Gray_box_testing) solution
whereas Xcode’s UI Testing is completely [black-box](https://en.wikipedia.org/wiki/Black-box_testing).
Expand Down Expand Up @@ -104,3 +104,13 @@ Yes. EarlGrey supports **Test Navigator** out-of-the-box.

Yes. You can set a breakpoint on any interaction. The breakpoint will be hit before that
interaction is executed, but after all prior interactions have been executed.

**Where do I find the xctest bundle?**

For the Example project, run the `EarlGreyExampleSwiftTests` target once then find the bundle:

> cd ~/Library/Developer/Xcode/DerivedData/EarlGreyExample-*/Build/Products/Debug-iphonesimulator/EarlGreyExampleSwift.app/PlugIns/EarlGreyExampleSwiftTests.xctest/
For physical device builds, replace `Debug-iphonesimulator` with `Debug-iphoneos`.

You can verify the `EarlGrey.framework` is included in the bundle at `EarlGreyExampleSwiftTests.xctest/Frameworks/EarlGrey.framework`

0 comments on commit edab71d

Please sign in to comment.