blob: c2b82859a2937c87519dc304496cc9abe897b7f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2014 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include <gtest/gtest.h>
#include "Common/CommonFuncs.h"
TEST(CommonFuncs, CrashMacro)
{
EXPECT_DEATH({ Crash(); }, "");
}
|