#include "absl/strings/internal/str_format/arg.h"
#include <limits>
#include <string>
#include "gtest/gtest.h"
#include "absl/base/config.h"
#include "absl/strings/str_format.h"
namespace absl {
ABSL_NAMESPACE_BEGIN
namespace str_format_internal {
namespace {
class FormatArgImplTest : public ::testing::Test { … };
inline FormatConvertResult<FormatConversionCharSet{ … }
TEST_F(FormatArgImplTest, ToInt) { … }
extern const char kMyArray[];
TEST_F(FormatArgImplTest, CharArraysDecayToCharPtr) { … }
extern const wchar_t kMyWCharTArray[];
TEST_F(FormatArgImplTest, WCharTArraysDecayToWCharTPtr) { … }
TEST_F(FormatArgImplTest, OtherPtrDecayToVoidPtr) { … }
TEST_F(FormatArgImplTest, WorksWithCharArraysOfUnknownSize) { … }
const char kMyArray[] = …;
TEST_F(FormatArgImplTest, WorksWithWCharTArraysOfUnknownSize) { … }
const wchar_t kMyWCharTArray[] = …;
}
}
ABSL_NAMESPACE_END
}