コード例 #1
0
        public async Task TestErrorCodesMapToDesiredTranslationsAndDisplayPopup(ResponseCode code, string title, string text)
        {
            // TODO: Navigation needs to be implemented without extensions to enable presenters to be tested
            throw new NotImplementedException();
            var navigationStub = new NavigationStub();

            var presenter = new AddContactPresenter(navigationStub);
            await presenter.Present(new AddContactResponse { Code = code });
        }