chromium/third_party/blink/renderer/platform/wtf/text/text_codec_replacement_test.cc

// Copyright 2014 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/platform/wtf/text/text_codec_replacement.h"

#include <memory>

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/text/text_codec.h"
#include "third_party/blink/renderer/platform/wtf/text/text_encoding.h"
#include "third_party/blink/renderer/platform/wtf/text/text_encoding_registry.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"

namespace WTF {

namespace {

// Just one example, others are listed in the codec implementation.
const char* g_replacement_alias =;

TEST(TextCodecReplacement, Aliases) {}

TEST(TextCodecReplacement, DecodesToFFFD) {}

TEST(TextCodecReplacement, EncodesToUTF8) {}

}  // namespace

}  // namespace WTF