6Jul/10
Test suite generator for Flex Unit 4
中文:Flex Unit 4 的 Test Suite 生成工具
Wrote a small tool to create AllTests.as file with all test cases for FlexUnit4 in Air. To use it, download the air file and install the small app, run it.
Here is the demo code to run it via ant:
<project name="Test Suiter" default="createSuite"> <target name="createSuite"> <exec executable="/Applications/TestSuiter.app/Contents/MacOS/TestSuiter"> <arg value="/Users/someone/Desktop/SomeProject/tests" /> </exec> </target> </project> |


