1/*
2 * Copyright (c) 2021, the SerenityOS developers.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <LibTest/TestCase.h>
8
9TEST_CASE(raise)
10{
11 EXPECT_NO_CRASH("This should never crash", [] {
12 return Test::Crash::Failure::DidNotCrash;
13 });
14}