From the course: App Center: Continuous Integration and Delivery for iOS

Unlock the full course today

Join today to access over 22,500 courses taught by industry experts or purchase this course individually.

Testing in App Center

Testing in App Center

From the course: App Center: Continuous Integration and Delivery for iOS

Start my 1-month free trial

Testing in App Center

- [Instructor] Here we're gonna talk about testing in App Center. App Center supports unit and UI testing, and many of you probably have done both of these types of testing, but just so that we're on the same page, let's go ahead and define these terms. A unit test is a test where were verifying a small piece of code like a method. So for example, we can call a method, pass an argument, and then we'll check to make sure the values being returned from that method are what we expected, and if they're not then we know somethin' went wrong. On the other hand, we also have UI tests, which are verifying the overall functionality of your application. So with the UI test, you're able to control the user interface. For example, you can have the test enter text into a text box. You can have the test click on a button to navigate to a new page, or even ensure that the correct values are being displayed in labels. Basically, anything a user can do with your application can be simulated with a UI…

Contents