Minetest 5.10.0-dev
 
Loading...
Searching...
No Matches
catch.h
Go to the documentation of this file.
1// Minetest
2// SPDX-License-Identifier: LGPL-2.1-or-later
3
4// We want to have catch write to rawstream (stderr) instead of stdout.
5// This should be included instead of <catch_amalgamated.hpp>
6// to patch the output streams accordingly.
7#define CATCH_CONFIG_NOSTDOUT
8#include <catch_amalgamated.hpp>
9
10namespace Catch {
11 std::ostream& cout();
12 std::ostream& clog();
13 std::ostream& cerr();
14}
Definition catch.cpp:8
std::ostream & cout()
Definition catch.cpp:9
std::ostream & clog()
Definition catch.cpp:12
std::ostream & cerr()
Definition catch.cpp:15