#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) { … }
}