#include "llvm/ADT/Twine.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/FormatAdapters.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/raw_ostream.h"
#include "gtest/gtest.h"
usingnamespacellvm;
namespace {
std::string repr(const Twine &Value) { … }
TEST(TwineTest, Construction) { … }
TEST(TwineTest, Numbers) { … }
TEST(TwineTest, Characters) { … }
TEST(TwineTest, Concat) { … }
TEST(TwineTest, toNullTerminatedStringRef) { … }
TEST(TwineTest, isSingleStringLiteral) { … }
TEST(TwineTest, LazyEvaluation) { … }
}