chromium/third_party/blink/renderer/core/html/parser/literal_buffer_test.cc

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

#include "third_party/blink/renderer/core/html/parser/literal_buffer.h"

#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {
namespace {

TEST(LiteralBufferTest, Empty) {}

TEST(LiteralBufferTest, AddAndClear) {}

TEST(LiteralBufferTest, AppendLiteral) {}

TEST(LiteralBufferTest, Copy) {}

TEST(LiteralBufferTest, Move) {}

TEST(LiteralBufferTest, Is8BitAppend) {}

TEST(LiteralBufferTest, Is8BitMove) {}

TEST(LiteralBufferTest, AsString) {}

TEST(LiteralBufferTest, AsStringIs8Bit) {}

}  // anonymous namespace
}  // namespace blink