本文整理匯總了C#中Prism.Forms.Tests.Mocks.PageNavigationServiceMock.GoBack方法的典型用法代碼示例。如果您正苦於以下問題:C# PageNavigationServiceMock.GoBack方法的具體用法?C# PageNavigationServiceMock.GoBack怎麽用?C# PageNavigationServiceMock.GoBack使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Prism.Forms.Tests.Mocks.PageNavigationServiceMock
的用法示例。
在下文中一共展示了PageNavigationServiceMock.GoBack方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Navigate_ToContentPage_ThenGoBack
public void Navigate_ToContentPage_ThenGoBack()
{
var navigationService = new PageNavigationServiceMock(_container);
var rootPage = new Xamarin.Forms.Page();
((IPageAware)navigationService).Page = rootPage;
navigationService.Navigate("ContentPage");
Assert.True(rootPage.Navigation.ModalStack.Count == 1);
Assert.IsType(typeof(ContentPageMock), rootPage.Navigation.ModalStack[0]);
navigationService.GoBack();
Assert.True(rootPage.Navigation.ModalStack.Count == 0);
}
示例2: NavigateAsync_ToContentPage_ThenGoBack
public void NavigateAsync_ToContentPage_ThenGoBack()
{
var navigationService = new PageNavigationServiceMock(_container);
var rootPage = new NavigationPage(new PageMock());
((IPageAware)navigationService).Page = rootPage;
Assert.IsType(typeof(PageMock), rootPage.CurrentPage);
navigationService.Navigate("ContentPage", useModalNavigation: false);
Assert.True(rootPage.Navigation.NavigationStack.Count == 2);
Assert.IsType(typeof(ContentPageMock), rootPage.CurrentPage);
navigationService.GoBack(useModalNavigation: false);
Assert.True(rootPage.Navigation.NavigationStack.Count == 1);
Assert.IsType(typeof(PageMock), rootPage.CurrentPage);
}
示例3: NavigateAsync_ToContentPage_ThenGoBack
public async void NavigateAsync_ToContentPage_ThenGoBack()
{
var pageMock = new ContentPageMock();
var navigationService = new PageNavigationServiceMock(_container);
((IPageAware)navigationService).Page = pageMock;
var rootPage = new NavigationPage(pageMock);
Assert.IsType(typeof(ContentPageMock), rootPage.CurrentPage);
await navigationService.Navigate("TabbedPage");
Assert.True(rootPage.Navigation.NavigationStack.Count == 2);
Assert.IsType(typeof(TabbedPageMock), rootPage.CurrentPage);
await navigationService.GoBack();
Assert.True(rootPage.Navigation.NavigationStack.Count == 1);
Assert.IsType(typeof(ContentPageMock), rootPage.CurrentPage);
}