mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
15 lines
264 B
C++
15 lines
264 B
C++
|
/*
|
||
|
* Copyright (c) 2021, the SerenityOS developers.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibTest/TestCase.h>
|
||
|
|
||
|
TEST_CASE(raise)
|
||
|
{
|
||
|
EXPECT_NO_CRASH("This should never crash", [] {
|
||
|
return Test::Crash::Failure::DidNotCrash;
|
||
|
});
|
||
|
}
|