#include <cmath>
#include "partition_alloc/build_config.h"
#include "partition_alloc/partition_alloc_base/strings/cstring_builder.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace partition_alloc::internal::base::strings {
namespace {
template <typename T>
void FillBuffer(CStringBuilder& builder, T value, unsigned count) { … }
}
TEST(CStringBuilderTestPA, String) { … }
TEST(CStringBuilderTestPA, Char) { … }
TEST(CStringBuilderTestPA, Integer) { … }
TEST(CStringBuilderTestPA, FloatingPoint) { … }
TEST(CStringBuilderTestPA, FillBuffer) { … }
TEST(CStringBuilderTestPA, Pointer) { … }
}