ddnet/src/test/test.cpp

13 lines
316 B
C++
Raw Normal View History

#include "test.h"
#include <gtest/gtest.h>
#include <base/system.h>
CTestInfo::CTestInfo()
{
const ::testing::TestInfo *pTestInfo =
::testing::UnitTest::GetInstance()->current_test_info();
str_format(m_aFilename, sizeof(m_aFilename), "%s.%s-%d.tmp",
pTestInfo->test_case_name(), pTestInfo->name(), pid());
}