fluint Flex用テスティングフレームワーク

DPUintが改名してfluintになった。
http://code.google.com/p/fluint/
http://www.infoq.com/jp/news/2008/11/fluint-unit-test-for-flex

package testSuiteModules
{
	import test.TestSuite1;
	import test.TestSuite2;
	
	import mx.modules.Module;
	
	import net.digitalprimates.fluint.modules.ITestSuiteModule;

	public class MyTestSuiteModule extends Module implements ITestSuiteModule
	{
		public function getTestSuites():Array
		{
			return [
				new TestSuite1(),
				new TestSuite2(),
			];
		}
	}
}
  • バグ情報

テスト実行用のUIにバグあり。↓このmxmlのwidth、heightを変更してもwindowサイズが変わらない。
http://code.google.com/p/fluint/source/browse/trunk/fluint_AirTestRunner/src/AIRTestRunner.mxml
↓このソースのcommitProperties()メソッドの先頭にsuper.commitProperties()を追加で解消。
http://code.google.com/p/fluint/source/browse/trunk/fluint_AirTestRunner/src/TestRunnerWindow.as