#include "base/debug/crash_logging.h"
#include <map>
#include <memory>
#include <sstream>
#include <string_view>
#include "base/memory/raw_ref.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
ElementsAre;
IsEmpty;
Pair;
namespace base {
namespace debug {
namespace {
class TestCrashKeyImplementation : public CrashKeyImplementation { … };
}
class CrashLoggingTest : public ::testing::Test { … };
TEST(UninitializedCrashLoggingTest, Basic) { … }
TEST_F(CrashLoggingTest, Basic) { … }
TEST_F(CrashLoggingTest, Macros) { … }
TEST_F(CrashLoggingTest, MultipleCrashKeysInSameScope) { … }
}
}