chromium/components/services/storage/indexed_db/scopes/leveldb_scopes_coding_unittest.cc

// Copyright 2018 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/indexed_db/scopes/leveldb_scopes_coding.h"

#include <iomanip>
#include <ostream>

#include "testing/gtest/include/gtest/gtest.h"

namespace leveldb {
std::ostream& operator<<(std::ostream& os, const leveldb::Slice& slice) {}
}  // namespace leveldb

namespace content {
namespace {

TEST(LevelDBScopesCodingTest, GlobalMetadataKey) {}

TEST(LevelDBScopesCodingTest, ScopeMetadataKey) {}

TEST(LevelDBScopesCodingTest, ScopeMetadataPrefix) {}

TEST(LevelDBScopesCodingTest, TasksKeyPrefix) {}

TEST(LevelDBScopesCodingTest, TasksKeyWithScopePrefix) {}

TEST(LevelDBScopesCodingTest, UndoTaskKeyPrefix) {}

TEST(LevelDBScopesCodingTest, CleanupTaskKeyPrefix) {}

TEST(LevelDBScopesCodingTest, UndoTaskKey) {}

TEST(LevelDBScopesCodingTest, CleanupTaskKey) {}

TEST(LevelDBScopesCodingTest, ParseScopeMetadataId) {}

TEST(LevelDBScopesCodingTest, InvalidMetadataByte) {}

TEST(LevelDBScopesCodingTest, InvalidVarInt) {}

TEST(LevelDBScopesCodingTest, InvalidPrefix) {}

}  // namespace
}  // namespace content