blob: 8d6390dc75505197a5d00ad5bb6e29b966fbb506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <gtest/gtest.h>
#include "Common/CommonFuncs.h"
TEST(CommonFuncs, CrashMacro)
{
EXPECT_DEATH({ Crash(); }, "");
}
|