@@ -18,6 +18,9 @@ import org.flexunit.runner.notification.Failure;
18
18
19
19
import org.flexunit.runner.notification.IAsyncCompletionRunListener ;
20
20
21
+ import skein.utils.delay.callLater ;
22
+ import skein.utils.delay.delayToTimeout ;
23
+
21
24
public class CIFileListener extends EventDispatcher implements IAsyncCompletionRunListener {
22
25
23
26
private var successFileName: String ;
@@ -44,7 +47,7 @@ public class CIFileListener extends EventDispatcher implements IAsyncCompletionR
44
47
try {
45
48
writeToFile(currentDirectory. resolvePath(successFileName), content );
46
49
} catch (error : Error ) {
47
- handler("error : " + error );
50
+ handler("Error : " + error );
48
51
}
49
52
50
53
}
@@ -53,11 +56,11 @@ public class CIFileListener extends EventDispatcher implements IAsyncCompletionR
53
56
try {
54
57
writeToFile(currentDirectory. resolvePath(failureFileName), content );
55
58
} catch (error : Error ) {
56
- handler("error : " + error );
59
+ handler("Error : " + error );
57
60
}
58
61
}
59
62
60
- private function writeToFile (file : File , content : String ): void {
63
+ private static function writeToFile (file : File , content : String ): void {
61
64
var fs: FileStream = new FileStream();
62
65
fs. open (file , FileMode. WRITE );
63
66
fs. writeUTFBytes (content );
@@ -67,12 +70,13 @@ public class CIFileListener extends EventDispatcher implements IAsyncCompletionR
67
70
// MARK: - IAsyncCompletionRunListener
68
71
69
72
public function testRunStarted (description : IDescription ): void {
70
- handler("test run started: " + description . displayName );
73
+ handler("test run started: " + ( description ? description . displayName : null ) );
71
74
}
72
75
73
76
public function testRunFinished (result : Result ): void {
74
77
if (result . failureCount == 0 ) {
75
78
writeToSuccessResultFile("OK" );
79
+ handler("SUCCESS: All Tests Passed" );
76
80
} else {
77
81
var failureContent: String = "" ;
78
82
for each (var failure: Failure in result . failures) {
@@ -81,29 +85,30 @@ public class CIFileListener extends EventDispatcher implements IAsyncCompletionR
81
85
failureContent += "\t\t " + (failure. exception is ParameterizedAssertionError ? ParameterizedAssertionError(failure. exception). targetException. message : failure. exception. message ) + "\n " ;
82
86
}
83
87
writeToFailureResultFile(failureContent);
88
+ handler("FAILURE: " + failureContent);
84
89
}
85
90
86
- NativeApplication. nativeApplication . exit ();
91
+ // NativeApplication.nativeApplication.exit();
87
92
}
88
93
89
94
public function testStarted (description : IDescription ): void {
90
- handler("started: " + description . displayName );
95
+ handler("started: " + ( description ? description . displayName : null ) );
91
96
}
92
97
93
98
public function testFinished (description : IDescription ): void {
94
- handler("finished: " + description . displayName );
99
+ handler("finished: " + ( description ? description . displayName : null ) );
95
100
}
96
101
97
102
public function testFailure (failure : Failure ): void {
98
- handler("test failure: " + failure. message );
103
+ handler("test failure: " + ( failure ? failure . message : null ) );
99
104
}
100
105
101
106
public function testAssumptionFailure (failure : Failure ): void {
102
- handler("test failure: " + failure. message );
107
+ handler("test failure: " + ( failure ? failure . message : null ) );
103
108
}
104
109
105
110
public function testIgnored (description : IDescription ): void {
106
- handler("test ignored: " + description . displayName );
111
+ handler("test ignored: " + ( description ? description . displayName : null ) );
107
112
}
108
113
109
114
public function get complete (): Boolean {
@@ -114,6 +119,7 @@ public class CIFileListener extends EventDispatcher implements IAsyncCompletionR
114
119
115
120
private function onInvoke (event : InvokeEvent ): void {
116
121
handler("invoke arguments: " + event. arguments );
122
+ handler("invoke argument count: " + event. arguments . length );
117
123
currentDirectory = new File(event. arguments [ 0 ] );
118
124
}
119
125
}
0 commit comments