當前位置: 首頁>>代碼示例>>C#>>正文


C# Mocks.PageNavigationServiceMock類代碼示例

本文整理匯總了C#中Prism.Forms.Tests.Mocks.PageNavigationServiceMock的典型用法代碼示例。如果您正苦於以下問題:C# PageNavigationServiceMock類的具體用法?C# PageNavigationServiceMock怎麽用?C# PageNavigationServiceMock使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


PageNavigationServiceMock類屬於Prism.Forms.Tests.Mocks命名空間,在下文中一共展示了PageNavigationServiceMock類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Navigate_ToUnregisteredPage_ByName

        public void Navigate_ToUnregisteredPage_ByName()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.Page();
            ((IPageAware)navigationService).Page = rootPage;

            navigationService.Navigate("UnregisteredPage");

            Assert.True(rootPage.Navigation.ModalStack.Count == 0);
        }
開發者ID:ruxo,項目名稱:Prism,代碼行數:10,代碼來源:PageNavigationServiceFixture.cs

示例2: NavigateAsync_ToContentPage_ByName

        public void NavigateAsync_ToContentPage_ByName()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.NavigationPage();
            ((IPageAware)navigationService).Page = rootPage;

            navigationService.Navigate("ContentPage", useModalNavigation: false);

            Assert.True(rootPage.Navigation.NavigationStack.Count == 1);
            Assert.IsType(typeof(ContentPageMock), rootPage.Navigation.NavigationStack[0]);
        }
開發者ID:ruxo,項目名稱:Prism,代碼行數:11,代碼來源:PageNavigationServiceFixture.cs

示例3: Navigate_ToContentPage_ByName

        public async void Navigate_ToContentPage_ByName()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.ContentPage();
            ((IPageAware)navigationService).Page = rootPage;

            await navigationService.Navigate("ContentPage");

            Assert.True(rootPage.Navigation.ModalStack.Count == 1);
            Assert.IsType(typeof(ContentPageMock), rootPage.Navigation.ModalStack[0]);
        }
開發者ID:dl0618,項目名稱:Prism,代碼行數:11,代碼來源:PageNavigationServiceFixture.cs

示例4: Navigate_ToUnregisteredPage_ByName

        public void Navigate_ToUnregisteredPage_ByName()
        {
            Assert.ThrowsAsync<NullReferenceException>(async () =>
            {
                var navigationService = new PageNavigationServiceMock(_container, _applicationProvider, _loggerFacade);
                var rootPage = new Xamarin.Forms.ContentPage();
                ((IPageAware)navigationService).Page = rootPage;

                await navigationService.NavigateAsync("UnregisteredPage");

                Assert.True(rootPage.Navigation.ModalStack.Count == 0);
            });
        }
開發者ID:Citringo,項目名稱:Prism,代碼行數:13,代碼來源:PageNavigationServiceFixture.cs

示例5: Navigate_FromMasterDetailPage_ToTabbedPage_IsNotPresented_FromViewModel

        public async void Navigate_FromMasterDetailPage_ToTabbedPage_IsNotPresented_FromViewModel()
        {
            var navigationService = new PageNavigationServiceMock(_container, _applicationProvider, _loggerFacade);
            var rootPage = new MasterDetailPageEmptyMock();
            ((IPageAware)navigationService).Page = rootPage;

            ((MasterDetailPageEmptyMockViewModel)rootPage.BindingContext).IsPresentedAfterNavigation = false;

            Assert.Null(rootPage.Detail);
            Assert.False(rootPage.IsPresented);            

            await navigationService.NavigateAsync("TabbedPage");
            Assert.IsType(typeof(TabbedPageMock), rootPage.Detail);

            Assert.False(rootPage.IsPresented);
        }
開發者ID:Citringo,項目名稱:Prism,代碼行數:16,代碼來源:PageNavigationServiceFixture.cs

示例6: DeepNavigate_ToMasterDetailPage_ToSamePage_ToTabbedPage

        public void DeepNavigate_ToMasterDetailPage_ToSamePage_ToTabbedPage()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.Page();
            ((IPageAware)navigationService).Page = rootPage;

            navigationService.Navigate("MasterDetailPage/ContentPage/TabbedPage");

            var masterDetail = rootPage.Navigation.ModalStack[0] as MasterDetailPageMock;
            Assert.NotNull(masterDetail);
            Assert.NotNull(masterDetail.Detail);
            Assert.IsType(typeof(ContentPageMock), masterDetail.Detail);

            var tabbedPage = masterDetail.Navigation.ModalStack[0] as TabbedPageMock;
            Assert.NotNull(tabbedPage);
        }
開發者ID:ruxo,項目名稱:Prism,代碼行數:16,代碼來源:PageNavigationServiceFixture.cs

示例7: Navigate_FromMasterDetailPage_ToSamePage

        public void Navigate_FromMasterDetailPage_ToSamePage()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new MasterDetailPageMock();
            ((IPageAware)navigationService).Page = rootPage;

            Assert.IsType(typeof(ContentPageMock), rootPage.Detail);

            navigationService.Navigate("TabbedPage");

            var firstDetailPage = rootPage.Detail;

            Assert.IsType(typeof(TabbedPageMock), firstDetailPage);

            navigationService.Navigate("TabbedPage");

            Assert.Equal(firstDetailPage, rootPage.Detail);
        }
開發者ID:ruxo,項目名稱:Prism,代碼行數:18,代碼來源:PageNavigationServiceFixture.cs

示例8: IPageAware_NullByDefault

 public void IPageAware_NullByDefault()
 {
     var navigationService = new PageNavigationServiceMock(_container);
     var page = ((IPageAware)navigationService).Page;
     Assert.Null(page);
 }
開發者ID:ruxo,項目名稱:Prism,代碼行數:6,代碼來源:PageNavigationServiceFixture.cs

示例9: Navigate_ToMasterDetailPage_ViewModelHasINavigationAware

        public void Navigate_ToMasterDetailPage_ViewModelHasINavigationAware()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.Page();
            ((IPageAware)navigationService).Page = rootPage;

            navigationService.Navigate("MasterDetailPage");

            Assert.True(rootPage.Navigation.ModalStack.Count == 1);

            var mdPage = rootPage.Navigation.ModalStack[0] as MasterDetailPage;
            Assert.NotNull(mdPage);

            var viewModel = mdPage.BindingContext as MasterDetailPageMockViewModel;
            Assert.NotNull(viewModel);
            Assert.True(viewModel.OnNavigatedToCalled);

            Assert.NotNull(mdPage.Detail);

            Assert.IsType(typeof(ContentPageMock), mdPage.Detail);
            var childViewModel = mdPage.Detail.BindingContext as ContentPageMockViewModel;
            Assert.NotNull(childViewModel);
            Assert.True(childViewModel.OnNavigatedToCalled);
        }
開發者ID:ruxo,項目名稱:Prism,代碼行數:24,代碼來源:PageNavigationServiceFixture.cs

示例10: DeepNavigate_ToTabbedPage_ToPage

        public async void DeepNavigate_ToTabbedPage_ToPage()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.ContentPage();
            ((IPageAware)navigationService).Page = rootPage;

            await navigationService.Navigate("TabbedPage/PageMock");

            var tabbedPage = rootPage.Navigation.ModalStack[0] as TabbedPageMock;
            Assert.NotNull(tabbedPage);
            Assert.NotNull(tabbedPage.CurrentPage);
            Assert.IsType(typeof(PageMock), tabbedPage.CurrentPage);
        }
開發者ID:dl0618,項目名稱:Prism,代碼行數:13,代碼來源:PageNavigationServiceFixture.cs

示例11: Navigate_FromMasterDetailPage

        public async void Navigate_FromMasterDetailPage()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new MasterDetailPageMock();
            ((IPageAware)navigationService).Page = rootPage;

            Assert.IsType(typeof(ContentPageMock), rootPage.Detail);

            await navigationService.Navigate("TabbedPage");

            Assert.IsType(typeof(TabbedPageMock), rootPage.Detail);

            await navigationService.Navigate("CarouselPage");

            Assert.IsType(typeof(CarouselPageMock), rootPage.Detail);
        }
開發者ID:dl0618,項目名稱:Prism,代碼行數:16,代碼來源:PageNavigationServiceFixture.cs

示例12: DeepNavigate_From_ContentPage_To_EmptyNavigationPage_ToContentPage

        public async void DeepNavigate_From_ContentPage_To_EmptyNavigationPage_ToContentPage()
        {
            var navigationService = new PageNavigationServiceMock(_container);
            var rootPage = new Xamarin.Forms.ContentPage();
            ((IPageAware)navigationService).Page = rootPage;

            await navigationService.Navigate("ContentPage/NavigationPage-Empty/ContentPage");

            var navPage = rootPage.Navigation.ModalStack[0].Navigation.ModalStack[0];
            Assert.True(navPage.Navigation.NavigationStack.Count == 1);
        }
開發者ID:dl0618,項目名稱:Prism,代碼行數:11,代碼來源:PageNavigationServiceFixture.cs

示例13: 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);
        }
開發者ID:dl0618,項目名稱:Prism,代碼行數:20,代碼來源:PageNavigationServiceFixture.cs

示例14: Navigate_ToContentPage_ByRelativeUri

        public async void Navigate_ToContentPage_ByRelativeUri()
        {
            var navigationService = new PageNavigationServiceMock(_container, _applicationProvider, _loggerFacade);
            var rootPage = new Xamarin.Forms.ContentPage();
            ((IPageAware)navigationService).Page = rootPage;

            await navigationService.NavigateAsync(new Uri("ContentPage", UriKind.Relative));

            Assert.True(rootPage.Navigation.ModalStack.Count == 1);
            Assert.IsType(typeof(ContentPageMock), rootPage.Navigation.ModalStack[0]);
        }
開發者ID:Citringo,項目名稱:Prism,代碼行數:11,代碼來源:PageNavigationServiceFixture.cs

示例15: DeepNavigate_ToCarouselPage_ToContentPage

        public async void DeepNavigate_ToCarouselPage_ToContentPage()
        {
            var navigationService = new PageNavigationServiceMock(_container, _applicationProvider, _loggerFacade);
            var rootPage = new Xamarin.Forms.ContentPage();
            ((IPageAware)navigationService).Page = rootPage;

            await navigationService.NavigateAsync("CarouselPage/ContentPage");

            var tabbedPage = rootPage.Navigation.ModalStack[0] as CarouselPageMock;
            Assert.NotNull(tabbedPage);
            Assert.NotNull(tabbedPage.CurrentPage);
            Assert.IsType(typeof(ContentPageMock), tabbedPage.CurrentPage);
        }
開發者ID:Citringo,項目名稱:Prism,代碼行數:13,代碼來源:PageNavigationServiceFixture.cs


注:本文中的Prism.Forms.Tests.Mocks.PageNavigationServiceMock類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。