Struct IContext
Synopsis
#include <include/internal/catch_context.h>
struct IContext
Description
No description yet.
Inheritance
Decsendents: IMutableContext
Methods
~IContext | ||
getConfig | ||
getResultCapture | ||
getRunner |
Source
Lines 22-29 in include/internal/catch_context.h.
struct IContext
{
virtual ~IContext();
virtual IResultCapture* getResultCapture() = 0;
virtual IRunner* getRunner() = 0;
virtual IConfigPtr const& getConfig() const = 0;
};