#include <memory>
#include <string>
#include "base/values.h"
#include "components/sync/driver/sync_internals_util.h"
#include "components/sync/test/test_sync_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer::sync_ui_util {
namespace {
TEST(SyncUIUtilTestAbout, ConstructAboutInformationWithUnrecoverableErrorTest) {
TestSyncService service;
service.SetDisableReasons(
syncer::SyncService::DISABLE_REASON_UNRECOVERABLE_ERROR);
base::Value::Dict strings = ConstructAboutInformation(
IncludeSensitiveData(true), &service, std::string());
EXPECT_TRUE(strings.Find("unrecoverable_error_detected"));
}
}
}