chromium/components/services/storage/service_worker/service_worker_disk_cache_unittest.cc

// Copyright 2020 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/service_worker/service_worker_disk_cache.h"

#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/callback_helpers.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "net/base/net_errors.h"
#include "net/base/test_completion_callback.h"
#include "net/disk_cache/disk_cache.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace storage {

class ServiceWorkerDiskCacheTest : public testing::Test {};

// Tests that callbacks of operations are invoked even when these operations are
// called at the same time for the same key.
TEST_F(ServiceWorkerDiskCacheTest, MultipleCallsForSameKey) {}

TEST_F(ServiceWorkerDiskCacheTest, DisablePriorToInitCompletion) {}

TEST_F(ServiceWorkerDiskCacheTest, DisableAfterInitted) {}

TEST_F(ServiceWorkerDiskCacheTest, CleanupCallback) {}

}  // namespace storage