Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有可能吗?在用户对UIView.
UIView
您不应该使用 UI 测试来测试视图控制器中的属性。那是单元测试的工作。
在您的单元测试中,您始终可以模拟您的控件或手动执行操作。
button.sendActionsForControlEvents(UIControlEvents.TouchUpInside)
然后你可以做你的断言以确保属性更改为正确的值。
UI 测试主要用于检查“按钮是否按下了正确的控制器”、“将开关关闭禁用了另一个按钮”等。
UI测试的好链接
单元测试的好链接