llvm/llvm/unittests/Support/LEB128Test.cpp

//===- llvm/unittest/Support/LEB128Test.cpp - LEB128 function tests -------===//
//
// 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 "llvm/Support/LEB128.h"
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/raw_ostream.h"
#include "gtest/gtest.h"
#include <string>
usingnamespacellvm;

namespace {

TEST(LEB128Test, EncodeSLEB128) {}

TEST(LEB128Test, EncodeULEB128) {}

TEST(LEB128Test, DecodeULEB128) {}

TEST(LEB128Test, DecodeInvalidULEB128) {}

TEST(LEB128Test, DecodeSLEB128) {}

TEST(LEB128Test, DecodeInvalidSLEB128) {}

TEST(LEB128Test, DecodeAndInc) {}

TEST(LEB128Test, SLEB128Size) {}

TEST(LEB128Test, ULEB128Size) {}

}  // anonymous namespace