// Copyright 2019 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/cbor/diagnostic_writer.h" #include "base/strings/stringprintf.h" #include "components/cbor/reader.h" #include "components/cbor/values.h" #include "testing/gtest/include/gtest/gtest.h" namespace cbor { TEST(CBORDiagnosticWriterTest, Basic) { … } TEST(CBORDiagnosticWriterTest, SizeLimit) { … } TEST(CBORDiagnosticWriterTest, LargeBytestrings) { … } TEST(CBORDiagnosticWriterTest, InvalidUTF8) { … } } // namespace cbor