chromium/base/test/gtest_xml_unittest_result_printer_unittest.cc

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

#include "base/test/gtest_xml_unittest_result_printer.h"

#include "base/base64.h"
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "base/strings/strcat.h"
#include "base/test/test_switches.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {

class XmlUnitTestResultPrinterTest : public ::testing::Test {};

TEST_F(XmlUnitTestResultPrinterTest, LinkInXmlFile) {}

TEST_F(XmlUnitTestResultPrinterTest, EscapedLinkInXmlFile) {}

TEST_F(XmlUnitTestResultPrinterTest, TagInXmlFile) {}

TEST_F(XmlUnitTestResultPrinterTest, MultiTagsInXmlFile) {}

TEST_F(XmlUnitTestResultPrinterTest, MultiTagsWithSameNameInXmlFile) {}

class XmlUnitTestResultPrinterTimestampTest : public ::testing::Test {};

TEST_F(XmlUnitTestResultPrinterTimestampTest, TimestampInXmlFile) {}

}  // namespace base