mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
14 lines
366 B
C++
14 lines
366 B
C++
|
|
// Copyright (c) 2023 The Bitcoin Core developers
|
||
|
|
// Distributed under the MIT software license, see the accompanying
|
||
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
|
||
|
|
#include <test/ipc_test.h>
|
||
|
|
#include <boost/test/unit_test.hpp>
|
||
|
|
|
||
|
|
BOOST_AUTO_TEST_SUITE(ipc_tests)
|
||
|
|
BOOST_AUTO_TEST_CASE(ipc_tests)
|
||
|
|
{
|
||
|
|
IpcTest();
|
||
|
|
}
|
||
|
|
BOOST_AUTO_TEST_SUITE_END()
|