chromium/net/disk_cache/blockfile/mapped_file_unittest.cc

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

#include "net/disk_cache/blockfile/mapped_file.h"

#include "base/files/file_path.h"
#include "base/memory/raw_ptr.h"
#include "base/strings/string_util.h"
#include "net/disk_cache/disk_cache_test_base.h"
#include "net/disk_cache/disk_cache_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

// Implementation of FileIOCallback for the tests.
class FileCallbackTest: public disk_cache::FileIOCallback {};

void FileCallbackTest::OnFileIOComplete(int bytes_copied) {}

}  // namespace

TEST_F(DiskCacheTest, MappedFile_SyncIO) {}

TEST_F(DiskCacheTest, MappedFile_AsyncIO) {}