mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
14 lines
264 B
C++
14 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;
|
|
});
|
|
}
|