API Documentation
ConsoleOutputFormatter.h
1 // ConsoleOutputFormatter.h
3 //
5 
6 namespace nkDebug
7 {
14  {
15  public :
16 
17  // Constructor, destructor
21  ConsoleOutputFormatter () noexcept ;
25  virtual ~ConsoleOutputFormatter () ;
26 
27  // Formatting
28  virtual nkMemory::String formatRunLaunch (const TestRunParameters& params) override ;
29  virtual nkMemory::String formatRunEnd () override ;
30  virtual nkMemory::String formatClassLaunch (const TestClassObserverInformation& info) override ;
31  virtual nkMemory::String formatClassBypass (const TestClassObserverInformation& info) override ;
32  virtual nkMemory::String formatClassEnd (const TestClassObserverInformation& info) override ;
33  virtual nkMemory::String formatTestLaunch (const TestFunctionObserverInformation& info) override ;
34  virtual nkMemory::String formatTestBypass (const TestFunctionObserverInformation& info) override ;
35  virtual nkMemory::String formatTestSuccess (const TestFunctionObserverInformation& info) override ;
36  virtual nkMemory::String formatTestFailure (const TestFunctionObserverInformation& info) override ;
37  } ;
38 }
nkDebug::ConsoleOutputFormatter::formatRunEnd
virtual nkMemory::String formatRunEnd() override
nkDebug::ConsoleOutputFormatter::formatClassEnd
virtual nkMemory::String formatClassEnd(const TestClassObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::formatClassLaunch
virtual nkMemory::String formatClassLaunch(const TestClassObserverInformation &info) override
nkDebug::ConsoleOutputFormatter
Implementation of a console friendly output formatting.
Definition: ConsoleOutputFormatter.h:14
nkDebug::OutputFormatter
Base class for test's output formatting.
Definition: OutputFormatter.h:15
nkDebug::ConsoleOutputFormatter::formatTestBypass
virtual nkMemory::String formatTestBypass(const TestFunctionObserverInformation &info) override
nkDebug::TestClassObserverInformation
Information provided during a TestClass run.
Definition: TestClassObserverInformation.h:12
nkDebug::ConsoleOutputFormatter::formatClassBypass
virtual nkMemory::String formatClassBypass(const TestClassObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::formatRunLaunch
virtual nkMemory::String formatRunLaunch(const TestRunParameters &params) override
nkDebug::TestRunParameters
Parameters allowing to drive a test run sequence.
Definition: TestRunParameters.h:12
nkDebug::ConsoleOutputFormatter::formatTestSuccess
virtual nkMemory::String formatTestSuccess(const TestFunctionObserverInformation &info) override
nkDebug::TestFunctionObserverInformation
Information provided during a function run.
Definition: TestFunctionObserverInformation.h:12
nkDebug
Encompasses all API of component NilkinsDebug.
Definition: LogManager.h:7
nkDebug::ConsoleOutputFormatter::formatTestFailure
virtual nkMemory::String formatTestFailure(const TestFunctionObserverInformation &info) override
nkDebug::ConsoleOutputFormatter::ConsoleOutputFormatter
ConsoleOutputFormatter() noexcept
nkDebug::ConsoleOutputFormatter::formatTestLaunch
virtual nkMemory::String formatTestLaunch(const TestFunctionObserverInformation &info) override
nkMemory
Encompasses all API of component NilkinsMemory.
Definition: Allocator.h:7