#include "chrome/browser/ui/autofill/delete_address_profile_dialog_controller_impl.h"
#include "base/test/mock_callback.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/signin/identity_test_environment_profile_adaptor.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "chrome/test/base/testing_profile.h"
#include "components/strings/grit/components_strings.h"
#include "components/sync/test/test_sync_service.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
namespace autofill {
_;
class DeleteAddressProfileDialogControllerImplTest
: public BrowserWithTestWindowTest { … };
TEST_F(DeleteAddressProfileDialogControllerImplTest,
LocalAddressProfile_AssertStrings) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest,
AccountAddressProfile_AssertStrings) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest,
SyncAddressProfile_AssertStrings) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest, AcceptedDelete) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest, CanceledDelete) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest, ClosedDialog) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest, UserDecisionIsReset) { … }
TEST_F(DeleteAddressProfileDialogControllerImplTest, TabClosed) { … }
}