chromium/chrome/browser/web_applications/web_app_translation_manager_unittest.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/web_applications/web_app_translation_manager.h"

#include <initializer_list>
#include <memory>
#include <optional>
#include <utility>

#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/web_applications/test/fake_web_app_provider.h"
#include "chrome/browser/web_applications/test/web_app_install_test_utils.h"
#include "chrome/browser/web_applications/test/web_app_test.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "chrome/browser/web_applications/web_app_provider.h"
#include "chrome/browser/web_applications/web_app_registrar.h"
#include "chrome/test/base/testing_profile.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "url/gurl.h"

namespace web_app {

class WebAppTranslationManagerTest : public WebAppTest {};

TEST_F(WebAppTranslationManagerTest, WriteReadAndDelete) {}

TEST_F(WebAppTranslationManagerTest, UpdateTranslations) {}

TEST_F(WebAppTranslationManagerTest, InstallAndUninstall) {}

// TODO(crbug.com/40201597): Add a test for an app which is installed before the
// translation manager is started.

}  // namespace web_app