public async Task DoesNotShowConfirmationDialogWhenTheAppIsInSync()
            {
                doNotShowConfirmationDialog();

                await ViewModel.TryLogout();

                await DialogService.DidNotReceiveWithAnyArgs().Confirm("", "", "", "");
            }
示例#2
0
            public async Task DoesNotShowConfirmationDialogWhenTheAppIsInSync()
            {
                doNotShowConfirmationDialog();

                TestScheduler.Start();
                ViewModel.TryLogout.Execute();

                await DialogService.DidNotReceiveWithAnyArgs().Confirm("", "", "", "");
            }