/* * Copyright (C) 2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "shared/offline_compiler/source/ocloc_arg_helper.h" #include "shared/offline_compiler/source/ocloc_fatbinary.h" #include "gtest/gtest.h" #include namespace NEO { class OclocFatBinaryGetTargetPlatformsForFatbinary : public ::testing::Test { public: OclocFatBinaryGetTargetPlatformsForFatbinary() { oclocArgHelperWithoutInput = std::make_unique(); oclocArgHelperWithoutInput->getPrinterRef() = MessagePrinter{true}; } std::unique_ptr oclocArgHelperWithoutInput; }; } // namespace NEO