As of Xcode 7 there is a programmatic interface to our app’s UI, thanks to three new classes: XCUIApplication, XCUIElement and XCUIElementQuery. They allows us to write native UI Tests for our iOS apps. Unit tests are useful to test a specific case in a class, and make sure that…