mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-13 18:45:12 +01:00
18 lines
339 B
C++
18 lines
339 B
C++
#include <gtest/gtest.h>
|
|
#include "g2log.h"
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "testing_helpers.h"
|
|
#include "std2_make_unique.hpp"
|
|
|
|
using namespace std;
|
|
using namespace std2;
|
|
|
|
//class CoutSink{
|
|
// stringstream buffer;
|
|
// unique_ptr<ScopedCout> scope_ptr;
|
|
// CoutSink() : scope_ptr(make_unique<ScopedCout>(&buffer){}
|
|
//};
|
|
//
|