Aug 28, 2017 · 1 min read
Very well written. I followed all the 6 parts of the tutorial step by step, which helped me learn the importance of unit testing. Especially when we started using enum for the moves.
While writing UI tests, I had to make sure that the app was launched so I added the following lines at the top of ViewControllerUITests class:
let app = XCUIApplication()
override func setUp() {
app.launch()
}
