// 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 "util/safe_math.h" #include "testing/gtest/include/gtest/gtest.h" namespace ipcz { namespace { template <typename T> uint64_t AsUint64(T value) { … } TEST(SafeMathTest, SaturatedCast) { … } } // namespace } // namespace ipcz