chromium/v8/test/unittests/base/string-format-unittest.cc

// Copyright 2022 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/base/string-format.h"

#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest-support.h"

namespace v8::base {

// Some hard-coded assumptions.
constexpr int kMaxPrintedIntLen =;
constexpr int kMaxPrintedSizetLen =;

TEST(FormattedStringTest, Empty) {}

TEST(FormattedStringTest, SingleString) {}

TEST(FormattedStringTest, Int) {}

TEST(FormattedStringTest, MaxInt) {}

TEST(FormattedStringTest, MinInt) {}

TEST(FormattedStringTest, SizeT) {}

TEST(FormattedStringTest, MaxSizeT) {}

TEST(FormattedStringTest, Combination) {}

}  // namespace v8::base