@@ -156,11 +156,11 @@ public SummaryViewModel()
156
156
// Set the commands to display the results
157
157
ViewAllResultsCommand = new Command (
158
158
async o => await Navigation . PushAsync (
159
- new ResultsView ( new ResultsViewModel ( _results . GetTestResults ( ) , true ) ) ) ,
159
+ new ResultsView ( new ResultsViewModel ( Results . GetTestResults ( ) , true ) ) ) ,
160
160
o => ! HasResults ) ;
161
161
ViewFailedResultsCommand = new Command (
162
162
async o => await Navigation . PushAsync (
163
- new ResultsView ( new ResultsViewModel ( _results . GetTestResults ( ) , false ) ) ) ,
163
+ new ResultsView ( new ResultsViewModel ( Results . GetTestResults ( ) , false ) ) ) ,
164
164
o => ! HasResults ) ;
165
165
166
166
// ReSharper restore AsyncVoidLambda
@@ -219,36 +219,18 @@ private async Task ExecuteTestsAsync()
219
219
_resultProcessor = TestResultProcessor . BuildChainOfResponsibility ( Options ) ;
220
220
await _resultProcessor . Process ( summary ) . ConfigureAwait ( false ) ;
221
221
222
- // Report results
222
+ // Report results on main thread as setting these properties will invoke binding updates
223
223
Device . BeginInvokeOnMainThread (
224
- ( ) =>
224
+ // ReSharper disable once AsyncVoidLambda
225
+ async ( ) =>
225
226
{
226
227
Results = summary ;
227
228
Running = false ;
228
229
229
- if ( Options . TerminateAfterExecution )
230
- {
231
- TerminateWithSuccess ( ) ;
232
- }
230
+ await Options . InvokeOnTestRunCompleted ( summary ) ;
233
231
} ) ;
234
232
}
235
233
236
- /// <summary>
237
- /// Terminates the test runner.
238
- /// </summary>
239
- /// <remarks>This method is platform specific and not always guaranteed to work.</remarks>
240
- private static void TerminateWithSuccess ( )
241
- {
242
- #if __IOS__
243
- var selector = new ObjCRuntime . Selector ( "terminateWithSuccess" ) ;
244
- UIKit . UIApplication . SharedApplication . PerformSelector ( selector , UIKit . UIApplication . SharedApplication , 0 ) ;
245
- #elif __DROID__
246
- System . Environment . Exit ( 0 ) ;
247
- #elif WINDOWS_UWP
248
- Windows . UI . Xaml . Application . Current . Exit ( ) ;
249
- #endif
250
- }
251
-
252
234
#endregion
253
235
}
254
236
}
0 commit comments