mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-28 07:29:25 +00:00
Refactoring towards interface based config
This commit is contained in:
parent
10fa0593db
commit
e1459955f1
17 changed files with 754 additions and 245 deletions
|
@ -15,8 +15,8 @@ namespace Catch{
|
|||
|
||||
Totals EmbeddedRunner::runMatching( const std::string& rawTestSpec, std::size_t groupIndex, std::size_t groupsCount, const std::string& ) {
|
||||
std::ostringstream oss;
|
||||
Config config;
|
||||
config.setStreamBuf( oss.rdbuf() );
|
||||
Ptr<Config> config = new Config();
|
||||
config->setStreamBuf( oss.rdbuf() );
|
||||
|
||||
Totals totals;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue