Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/internal/TestCPPTestCase.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,23 +196,23 @@ namespace TestCPP {
* This can be used for checking sections of output based on
* test configuration.
*/
void clearStdoutCapture ();
static void clearStdoutCapture ();

/**
* @brief Clears the captured output from std::clog.
*
* This can be used for checking sections of output based on
* test configuration.
*/
void clearLogCapture ();
static void clearLogCapture ();

/**
* @brief Clears the captured output from stderr.
*
* This can be used for checking sections of output based on
* test configuration.
*/
void clearStderrCapture ();
static void clearStderrCapture ();

/**
* @brief Check the argument against what is captured from
Expand Down
2 changes: 1 addition & 1 deletion include/internal/TestCPPTestSuite.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ namespace TestCPP {
*/
template<typename... OtherTests>
typename enable_if<sizeof...(OtherTests) == 0>::type
inline addTests () { }
static inline addTests () { }

/**
* @brief Add one or more tests at once to the test suite.
Expand Down