In the unit tests, the test case name and test name are logged, but currently the test case and name are reversed. This CL orders them correctly, so instead of, e.g. CheckHDCPCapability.OEMCryptoClientTest, we get OEMCryptoClientTest.CheckHDCPCapability as intended. Merge of go/wvgerrit/18045 from widevine repo Change-Id: I20bb2d47de0c84b3a1f00bb46af5ed0a45d7fc56
20 lines
473 B
C++
20 lines
473 B
C++
// Copyright 2015 Google Inc. All Rights Reserved.
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
namespace wvcdm {
|
|
class WvCdmTestBase : public ::testing::Test {
|
|
public:
|
|
WvCdmTestBase() {}
|
|
virtual ~WvCdmTestBase() {}
|
|
|
|
protected:
|
|
virtual void SetUp() {
|
|
const ::testing::TestInfo* const test_info =
|
|
::testing::UnitTest::GetInstance()->current_test_info();
|
|
LOGD("Running test %s.%s", test_info->test_case_name(),
|
|
test_info->name());
|
|
}
|
|
};
|
|
} // namespace wvcdm
|