#include "base/logging.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "build/build_config.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/webrtc_overrides/rtc_base/logging.h"
namespace {
static const int kDefaultVerbosity = …;
static const char* AsString(rtc::LoggingSeverity severity) { … }
class WebRtcTextLogTest : public testing::Test { … };
TEST_F(WebRtcTextLogTest, DefaultConfiguration) { … }
TEST_F(WebRtcTextLogTest, InfoConfiguration) { … }
TEST_F(WebRtcTextLogTest, LogEverythingConfiguration) { … }
TEST_F(WebRtcTextLogTest, LogIf) { … }
}