chromium/content/browser/storage_partition_impl_map_unittest.cc

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

#include "content/browser/storage_partition_impl_map.h"

#include <unordered_set>
#include <utility>

#include "base/files/file_util.h"
#include "base/run_loop.h"
#include "base/test/gtest_util.h"
#include "build/build_config.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "content/public/test/test_utils.h"
#include "storage/browser/database/database_tracker.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace content {

TEST(StoragePartitionImplMapTest, GarbageCollect) {}

// TODO(crbug/333756088): Enable for Android when WebSQL has been removed from
// Android WebView.
#if BUILDFLAG(IS_ANDROID)
#define MAYBE_WebSQLCleanup
#else
#define MAYBE_WebSQLCleanup
#endif
TEST(StoragePartitionImplMapTest, MAYBE_WebSQLCleanup) {}

}  // namespace content