// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/gwp_asan/common/pack_stack_trace.h" #include "base/test/gtest_util.h" #include "testing/gtest/include/gtest/gtest.h" namespace gwp_asan { namespace internal { TEST(PackTest, TrivialExample) { … } TEST(PackTest, DecreasingSequence) { … } TEST(PackTest, MultibyteVarInts) { … } TEST(PackTest, UnpackFailsOnOutOfBoundsVarInt) { … } TEST(PackTest, UnpackFailsOnBufferTooSmall) { … } TEST(PackTest, PackFailsOnBufferTooSmall) { … } } // namespace internal } // namespace gwp_asan