任何人都知道flex元数据机制
当我使用flexunit进行测试时,我对[Test]、[Test(async, ui)]等元数据感到困惑,有人知道flex如何解析元数据吗? 如何定义我自己的元数据
When I use flexunit for tests, I confused about the metadata like [Test], [Test(async, ui)], anyone knows how does the metadata parsed by the flex? how to define my own metadata
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在测试方法中等待异步事件时,应该使用 [Test(async)]。
异步告诉框架暂时不要声明该方法成功,并且我们需要考虑其他事情(事件)才能做出该决定。
You should use [Test(async)] when you're waiting for an asynchronous event in a test method.
Async tells the framework not to declare the method a success just yet, and that there is something else (an event) we need to account for to make that decision.