2014-03-09 13:27:04 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-03-09 13:27:04 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#include "Common/CommonFuncs.h"
|
|
|
|
|
|
|
|
TEST(CommonFuncs, CrashMacro)
|
|
|
|
{
|
|
|
|
EXPECT_DEATH({ Crash(); }, "");
|
|
|
|
}
|