Flex - 找不到导入 AbstractMatcherTestCase
我尝试在 FlashBuilder 4.5.1 中使用 Flex Unit,但收到警告“无法找到 import AbstractMatcherTestCase”。谁能让我知道我错过了什么?我有 hamcrest-as3-flex-1.1.3.swc 作为我的项目参考库之一。
我尝试按如下方式导入:
import org.hamcrest.AbstractMatcherTestCase;
谢谢
I am trying to use Flex Unit in FlashBuilder 4.5.1 and I am getting the warning " import AbstractMatcherTestCase could not be found". Can anyone let me know what I'm missing? I have
hamcrest-as3-flex-1.1.3.swc as one of my referenced libraries for the project.
I am trying to import as follows:
import org.hamcrest.AbstractMatcherTestCase;
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要导入 AbstractMatcherTestCase?您正在编写新的 Matcher 吗?
测试和测试支持类不包含在 SWC 中。如果你想扩展 hamcrest-as3,我建议在 GitHub 上分叉 hamcrest-as3,进行修改如果它们对其他人有用,请向我发送包含您的更改的 Pull 请求。
Why are you importing AbstractMatcherTestCase? Are you writing a new Matcher?
The tests and test support classes are not included in the SWC. If you want to extend hamcrest-as3 I recommend forking hamcrest-as3 on GitHub, making your modifications and if they are going to be useful to others then send me a Pull Request with your changes.