This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package uk.co.jonnyreeves.flexunit | |
{ | |
import flash.events.EventDispatcher; | |
import mx.events.MetadataEvent; | |
import org.flexunit.async.Async; | |
import org.osflash.signals.ISignal; | |
public function assertAfterSignal(testCase : Object, signal : ISignal, handler : Function, timeout : int = 500) : void |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package uk.co.jonnyreeves.puremvc.util | |
{ | |
import flash.utils.Dictionary; | |
import org.osflash.signals.ISignal; | |
import org.puremvc.as3.multicore.interfaces.INotifier; | |
/** | |
* Convenience class which allows you to create bindings between as3-signals and PureMVC notifications - when the | |
* Signal gets dispatched, the mapped Notification is created with the Signal's payload supplied as the |
NewerOlder