chromium/components/services/storage/storage_service_impl_unittest.cc

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

#include "components/services/storage/storage_service_impl.h"

#include "base/files/file_path.h"
#include "base/files/scoped_temp_dir.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "components/services/storage/partition_impl.h"
#include "components/services/storage/public/mojom/partition.mojom.h"
#include "components/services/storage/public/mojom/storage_service.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace storage {

class StorageServiceImplTest : public testing::Test {};

TEST_F(StorageServiceImplTest, UniqueInMemoryPartitions) {}

TEST_F(StorageServiceImplTest, SharedPersistentPartition) {}

TEST_F(StorageServiceImplTest, PartitionDestroyedOnLastClientDisconnect) {}

TEST_F(StorageServiceImplTest, PersistentPartitionRequiresAbsolutePath) {}

}  // namespace storage