mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-06 21:57:54 +02:00
41 lines
1017 B
C++
41 lines
1017 B
C++
// Copyright (c) 2025-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or https://opensource.org/license/mit/.
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
BOOST_AUTO_TEST_SUITE(mock_process, *boost::unit_test::disabled())
|
|
|
|
BOOST_AUTO_TEST_CASE(valid_json, *boost::unit_test::disabled())
|
|
{
|
|
std::cout << R"({"success": true})" << std::endl;
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nonzeroexit_nooutput, *boost::unit_test::disabled())
|
|
{
|
|
BOOST_FAIL("Test unconditionally fails.");
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nonzeroexit_stderroutput, *boost::unit_test::disabled())
|
|
{
|
|
std::cerr << "err\n";
|
|
BOOST_FAIL("Test unconditionally fails.");
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(invalid_json, *boost::unit_test::disabled())
|
|
{
|
|
std::cout << "{\n";
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(pass_stdin_to_stdout, *boost::unit_test::disabled())
|
|
{
|
|
std::string s;
|
|
std::getline(std::cin, s);
|
|
std::cout << s << std::endl;
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|