#include #include namespace xrpl::test { struct DetectCrash_test : public beast::unit_test::Suite { void testDetectCrash() { testcase("Detect Crash"); // Kill the process. This is used to test that the multi-process // unit test will correctly report the crash. std::terminate(); } void run() override { testDetectCrash(); } }; BEAST_DEFINE_TESTSUITE_MANUAL(DetectCrash, basics, beast); } // namespace xrpl::test