Correct naming: SetUpImpl -> setUpImpl

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2022-06-28 16:27:56 +00:00
committed by Compute-Runtime-Automation
parent 6550dca069
commit c90f3b3c93
24 changed files with 86 additions and 86 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2021 Intel Corporation
* Copyright (C) 2020-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@ -14,10 +14,10 @@
namespace NEO {
void ClDeviceFixture::SetUp() {
hardwareInfo = *defaultHwInfo;
SetUpImpl(&hardwareInfo);
setUpImpl(&hardwareInfo);
}
void ClDeviceFixture::SetUpImpl(const NEO::HardwareInfo *hardwareInfo) {
void ClDeviceFixture::setUpImpl(const NEO::HardwareInfo *hardwareInfo) {
pDevice = MockClDevice::createWithNewExecutionEnvironment<MockDevice>(hardwareInfo, rootDeviceIndex);
ASSERT_NE(nullptr, pDevice);
pClExecutionEnvironment = static_cast<MockClExecutionEnvironment *>(pDevice->getExecutionEnvironment());

View File

@ -14,9 +14,9 @@ namespace NEO {
struct HardwareInfo;
struct ClDeviceFixture {
void SetUp(); // NOLINT(readability-identifier-naming)
void SetUpImpl(const NEO::HardwareInfo *hardwareInfo); // NOLINT(readability-identifier-naming)
void TearDown(); // NOLINT(readability-identifier-naming)
void SetUp(); // NOLINT(readability-identifier-naming)
void setUpImpl(const NEO::HardwareInfo *hardwareInfo);
void TearDown(); // NOLINT(readability-identifier-naming)
MockDevice *createWithUsDeviceId(unsigned short usDeviceId);

View File

@ -20,7 +20,7 @@ namespace NEO {
template <bool setupBlitter>
struct DispatchFlagsTestsBase : public ::testing::Test {
template <typename CsrType>
void SetUpImpl() { // NOLINT(readability-identifier-naming)
void setUpImpl() {
HardwareInfo hwInfo = *defaultHwInfo;
if (setupBlitter) {
hwInfo.capabilityTable.blitterOperationsSupported = true;