llvm/clang-tools-extra/unittests/clang-doc/BitcodeTest.cpp

//===-- clang-doc/BitcodeTest.cpp -----------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "BitcodeReader.h"
#include "BitcodeWriter.h"
#include "ClangDocTest.h"
#include "Representation.h"
#include "llvm/Bitstream/BitstreamReader.h"
#include "llvm/Bitstream/BitstreamWriter.h"
#include "gtest/gtest.h"

namespace clang {
namespace doc {

template <typename T> static std::string writeInfo(T &I) {}

std::string writeInfo(Info *I) {}

std::vector<std::unique_ptr<Info>> readInfo(StringRef Bitcode,
                                            size_t NumInfos) {}

TEST(BitcodeTest, emitNamespaceInfoBitcode) {}

TEST(BitcodeTest, emitRecordInfoBitcode) {}

TEST(BitcodeTest, emitFunctionInfoBitcode) {}

TEST(BitcodeTest, emitMethodInfoBitcode) {}

TEST(BitcodeTest, emitEnumInfoBitcode) {}

TEST(BitcodeTest, emitTypedefInfoBitcode) {}

TEST(SerializeTest, emitInfoWithCommentBitcode) {}

} // namespace doc
} // namespace clang