// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/string_parse.h" #include <limits> #include <string_view> #include "gtest/gtest.h" namespace openscreen::string_parse { void ExpectParseInt(std::string_view number, int expected_value) { … } TEST(StringParseTest, ParseAsciiNumberInt) { … } TEST(StringParseTest, ParseAsciiNumberFails) { … } } // namespace openscreen::string_parse