Hi, I'm trying to use for the first time flexUnit for Flex 2. I read Darron Schall article about it http://www.darronschall.com/weblog/ archives/000216.cfm. I'm wondering why we have to write such code in every test case public static function suite():TestSuite { var ts:TestSuite = new TestSuite(); ts.addTest( new TemperatureConverterTest( "testToFarenheight" ) ); ts.addTest( new TemperatureConverterTest( "testToCelsius" ) ); return ts; } Can I use naming convention "test*" to specify test methods like it was in flexUnit for as2 and like it is in any testing framework??? Or i have to specify them manually like in Darron Schall's article???
------------------------ Yahoo! Groups Sponsor --------------------~--> You can search right from your browser? It's easy and it's free. See how. http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM --------------------------------------------------------------------~-> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

