#include "llvm/ADT/SmallString.h"
#include "gtest/gtest.h"
#include <climits>
#include <cstring>
#include <stdarg.h>
usingnamespacellvm;
namespace {
class SmallStringTest : public testing::Test { … };
TEST_F(SmallStringTest, EmptyStringTest) { … }
TEST_F(SmallStringTest, AssignRepeated) { … }
TEST_F(SmallStringTest, AssignIterPair) { … }
TEST_F(SmallStringTest, AssignStringRef) { … }
TEST_F(SmallStringTest, AssignSmallVector) { … }
TEST_F(SmallStringTest, AssignStringRefs) { … }
TEST_F(SmallStringTest, AppendIterPair) { … }
TEST_F(SmallStringTest, AppendStringRef) { … }
TEST_F(SmallStringTest, AppendSmallVector) { … }
TEST_F(SmallStringTest, AppendStringRefs) { … }
TEST_F(SmallStringTest, StringRefConversion) { … }
TEST_F(SmallStringTest, StdStringConversion) { … }
TEST_F(SmallStringTest, Substr) { … }
TEST_F(SmallStringTest, Slice) { … }
TEST_F(SmallStringTest, Find) { … }
TEST_F(SmallStringTest, Count) { … }
TEST_F(SmallStringTest, Realloc) { … }
TEST_F(SmallStringTest, Comparisons) { … }
TEST_F(SmallStringTest, GTestPrinter) { … }
}