kaycxx-test
C++ unit test framework
Loading...
Searching...
No Matches
Namespaces | Functions
run_tests.hpp File Reference

Defines functions for running registered tests. More...

#include <iosfwd>
#include <kaycxx/term/ansi_mode.hpp>
#include <kaycxx/test/test_registry.hpp>
Include dependency graph for run_tests.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  kaycxx
 Root namespace for kaycxx libraries.
 
namespace  kaycxx::test
 Unit test framework functions and types.
 

Functions

int kaycxx::test::run_tests ()
 Runs the global test registry and writes the report to standard output.
 
int kaycxx::test::run_tests (int argc, char *argv[])
 Runs the global test registry according to command-line arguments.
 
int kaycxx::test::run_tests (std::ostream &output)
 Runs the global test registry and writes the report to the given stream.
 
int kaycxx::test::run_tests (std::ostream &output, kaycxx::term::ansi_mode ansi_mode)
 Runs the global test registry and writes the report to the given stream.
 
int kaycxx::test::run_tests (test_registry &registry, std::ostream &output)
 Runs the given test registry and writes the report to the given stream.
 
int kaycxx::test::run_tests (test_registry &registry, std::ostream &output, kaycxx::term::ansi_mode ansi_mode)
 Runs the given test registry and writes the report to the given stream.
 

Detailed Description

Defines functions for running registered tests.