From the course: iOS App Development: Test-Driven Development

Unlock the full course today

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

Planning and design

Planning and design

From the course: iOS App Development: Test-Driven Development

Start my 1-month free trial

Planning and design

- The application we're going to be building throughout the rest of the course is very basic in terms of functionality and scope. The app is a movie tracker which lists all the movies you want to see and gives you the option of checking off the ones you've already seen. Our blueprint will look like this. One view controller, a title, and a table view. If you want to follow along and create our project from scratch, I encourage you to do so. However, if you want to skip right to the meat of the course, you can always use the exercise files to jump into any video. As far as design goes, our app only has a table view. It will have two sections, one for listing the movies you want to see, and the second for movies you've already seen. When we tap on a movie in our first section, it will move down to the movies seen section. Easy, right? What you should focus on while we're building this app is how we are unit testing different aspects of a traditional project. This includes setting up…

Contents