I am testing timerevent with flex unit. Follwing is the code which i tried , it always goes to cmdFailed function (Time out function).I am new to flex unit .any help would be greatly appreciated.

[Before]

    public function setUp():void
    {           

        timer = new Timer(12000);                                           
    }

         [Test(async,order=1)]
    public function teststorapidpresenter():void
    {               

        timer.addEventListener(TimerEvent.TIMER_COMPLETE,Async.asyncHandler(this,cmdHandler,20000,null,cmdFailed));
        timer.start();          
    }

        private function cmdHandler(event:TimerEvent,passThroughData:Object):void
    {           

    }

    private function cmdFailed(event:Event):void
    {
        fail("Event not dispatched");
    }
link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Yes, classic error here. By default, repeatCount property of a timer is 0. That means the time never stops so the TIMER_COMPLETE is never dispatched.

timer.repeatCount = 1

and it should work

link|improve this answer
Thanks a lot .. I dint notice that.. – Saravana Feb 22 '11 at 16:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.