2014-03-09 13:27:04 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-03-09 13:27:04 +00:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#include "Common/CommonFuncs.h"
|
|
|
|
|
|
|
|
TEST(CommonFuncs, CrashMacro)
|
|
|
|
{
|
|
|
|
EXPECT_DEATH({ Crash(); }, "");
|
|
|
|
}
|