/* * Copyright (C) 2018-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/helpers/gmm_callbacks.h" #include "test.h" using namespace NEO; typedef ::testing::Test Gen11GmmCallbacksTests; GEN11TEST_F(Gen11GmmCallbacksTests, notSupportedDeviceCallback) { EXPECT_EQ(0, DeviceCallbacks::notifyAubCapture(nullptr, 0, 0, false)); } GEN11TEST_F(Gen11GmmCallbacksTests, notSupportedTTCallback) { EXPECT_EQ(0, TTCallbacks::writeL3Address(nullptr, 1, 2)); }