| Index: ios/chrome/browser/ui/payments/shipping_address_selection_coordinator_unittest.mm
|
| diff --git a/ios/chrome/browser/ui/payments/shipping_address_selection_coordinator_unittest.mm b/ios/chrome/browser/ui/payments/shipping_address_selection_coordinator_unittest.mm
|
| index 4eb69572897c99101c873ea901ead77259c3b6d1..f4aca49f45b868fb4b057d604617cd603b5390a7 100644
|
| --- a/ios/chrome/browser/ui/payments/shipping_address_selection_coordinator_unittest.mm
|
| +++ b/ios/chrome/browser/ui/payments/shipping_address_selection_coordinator_unittest.mm
|
| @@ -15,9 +15,11 @@
|
| #include "components/autofill/core/browser/test_personal_data_manager.h"
|
| #include "components/autofill/core/browser/test_region_data_loader.h"
|
| #include "components/prefs/pref_service.h"
|
| +#include "ios/chrome/browser/browser_state/test_chrome_browser_state.h"
|
| #include "ios/chrome/browser/payments/payment_request_test_util.h"
|
| #include "ios/chrome/browser/payments/test_payment_request.h"
|
| #import "ios/chrome/browser/ui/payments/payment_request_selector_view_controller.h"
|
| +#import "ios/web/public/test/fakes/test_web_state.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/platform_test.h"
|
| #include "third_party/ocmock/OCMock/OCMock.h"
|
| @@ -44,9 +46,13 @@ class PaymentRequestShippingAddressSelectionCoordinatorTest
|
| autofill::AutofillType(autofill::PHONE_HOME_WHOLE_NUMBER),
|
| base::string16(), "en-US");
|
| personal_data_manager_.AddTestingProfile(&autofill_profile2_);
|
| +
|
| + TestChromeBrowserState::Builder test_cbs_builder;
|
| + chrome_browser_state_ = test_cbs_builder.Build();
|
| +
|
| payment_request_ = base::MakeUnique<payments::TestPaymentRequest>(
|
| payment_request_test_util::CreateTestWebPaymentRequest(),
|
| - &personal_data_manager_);
|
| + chrome_browser_state_.get(), &web_state_, &personal_data_manager_);
|
|
|
| test_region_data_loader_.set_synchronous_callback(true);
|
| payment_request_->SetRegionDataLoader(&test_region_data_loader_);
|
| @@ -60,10 +66,12 @@ class PaymentRequestShippingAddressSelectionCoordinatorTest
|
|
|
| autofill::AutofillProfile autofill_profile1_;
|
| autofill::AutofillProfile autofill_profile2_;
|
| + web::TestWebState web_state_;
|
| std::unique_ptr<PrefService> pref_service_;
|
| autofill::TestPersonalDataManager personal_data_manager_;
|
| autofill::TestRegionDataLoader test_region_data_loader_;
|
| std::unique_ptr<payments::TestPaymentRequest> payment_request_;
|
| + std::unique_ptr<TestChromeBrowserState> chrome_browser_state_;
|
| };
|
|
|
| // Tests that invoking start and stop on the coordinator presents and dismisses
|
|
|