- What is a unit test?
c) A test that checks an object in isolation.
- Is it okay to force your tests to execute in a certain order?
b) No.
- What is the order of the three As?
c) Arrange, Act, Assert.
- How do protocols help you when writing tests?
a) You can mock certain objects by conforming them to a protocol.
- How can you see which code is not tested in your app?
a) Using Code Coverage.
- What is a launch argument?
b) A string that is passed to an app when it launches.
- How does XCUITest identify elements in an app?
c) Through accessibility identifiers.