mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Define single .clang-tidy configuration with all used checks and use NOLINT to selectively silence tool. That way cleanup should be easier. third_part/ has its own configuration that disables clang-tidy for this folder. Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
30 lines
574 B
C++
30 lines
574 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
|
|
struct MockExecutionEnvironment;
|
|
class GmmHelper;
|
|
class GmmClientContext;
|
|
|
|
class MockExecutionEnvironmentGmmFixture {
|
|
protected:
|
|
void SetUp(); // NOLINT(readability-identifier-naming)
|
|
void TearDown(); // NOLINT(readability-identifier-naming)
|
|
|
|
std::unique_ptr<MockExecutionEnvironment> executionEnvironment;
|
|
|
|
public:
|
|
GmmHelper *getGmmHelper();
|
|
GmmClientContext *getGmmClientContext();
|
|
};
|
|
} // namespace NEO
|