#include "absl/strings/ascii.h"
#include <algorithm>
#include <cctype>
#include <clocale>
#include <cstring>
#include <string>
#include "gtest/gtest.h"
#include "absl/base/macros.h"
#include "absl/strings/string_view.h"
namespace {
TEST(AsciiIsFoo, All) { … }
TEST(AsciiIsFoo, SameAsIsFoo) { … }
TEST(AsciiToFoo, All) { … }
TEST(AsciiStrTo, Lower) { … }
TEST(AsciiStrTo, Upper) { … }
TEST(StripLeadingAsciiWhitespace, FromStringView) { … }
TEST(StripLeadingAsciiWhitespace, InPlace) { … }
TEST(StripTrailingAsciiWhitespace, FromStringView) { … }
TEST(StripTrailingAsciiWhitespace, InPlace) { … }
TEST(StripAsciiWhitespace, FromStringView) { … }
TEST(StripAsciiWhitespace, InPlace) { … }
TEST(RemoveExtraAsciiWhitespace, InPlace) { … }
}