我有一个没有参数的void方法的类,想知道这种方法是否可以通过单元测试来测试?如果是,那么应该测试什么?
上下文:
我有一个viewcontroller,想要一个带有取消按钮的动作表。
class LoginVC: UIViewController {
func showLoginError() {
let alertController: UIAlertController = UIAlertController.init(title: "Erreur", message: "Nous ne sommes pas parvenu à vous connecter, vérifiez vos informations.", preferredStyle: .alert)
let closeAction = UIAlertAction.init(title: "Ok", style: .cancel, handler: { (action) in
self.userAddressField.becomeFirstResponder()
})
alertController.addAction(closeAction)
self.present(alertController, animated: true, completion: nil)
}
}