// Copyright 2016 The Chromium 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 "quiche/common/quiche_text_utils.h" #include <string> #include "absl/strings/escaping.h" #include "quiche/common/platform/api/quiche_test.h" namespace quiche { namespace test { TEST(QuicheTestUtilsTest, StringPieceCaseHash) { … } TEST(QuicheTextUtilsTest, ToLower) { … } TEST(QuicheTextUtilsTest, RemoveLeadingAndTrailingWhitespace) { … } TEST(QuicheTextUtilsTest, HexDump) { … } TEST(QuicheTextUtilsTest, Base64Encode) { … } TEST(QuicheTextUtilsTest, ContainsUpperCase) { … } } // namespace test } // namespace quiche