flex unit使用

1。 在项目中创建  testCase和testSuite, 基本类似junit中的TestCase和TestSuite,程序会自动创建 FlexUnitApplication.mxml (在其中包含要加载的TestCase 和TestSuite,可能需要手动添加) 和 FlexUnitCompilerApplication.mxml (要编译的TestCase和TestSuite,应该不需要修改)

     先建立TestCase,最后再使用TestSuite组合TestCase

2. 可以在工程级别或单一TestCase级别运行测试

  可通过testunit result的run按钮运行测试 ,快捷键如下: 

  •     Alt+Shift+A, F Runs all FlexUnit tests in the project.

  •     Alt+Shift+E, F  Runs the selected FlexUnit test.

  •   选择TestCase或TestSuite类,点击右键菜单的  执行flex unit 测试也可以

  • 3。只要浏览器中出现结果页面,就可以在 testunit result中查看详细信息

  • 更进一步的学习,参考文档:http://docs.flexunit.org/index.php?title=Before_and_After,_BeforeClass_and_AfterClass

你可能感兴趣的:(浏览器,测试,Flex,JUnit,文档)