// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "string_util.h" #include <gtest/gtest.h> BSSL_NAMESPACE_BEGIN namespace { TEST(StringUtilTest, IsAscii) { … } TEST(StringUtilTest, IsEqualNoCase) { … } TEST(StringUtilTest, EndsWithNoCase) { … } TEST(StringUtilTest, FindAndReplace) { … } TEST(StringUtilTest, StartsWithNoCase) { … } TEST(StringUtilTest, HexEncode) { … } TEST(StringUtilTest, NumberToDecimalString) { … } TEST(StringUtilTest, SplitString) { … } } // namespace BSSL_NAMESPACE_END