compute-runtime/shared/test/common/mocks/windows/mock_os_time_win.h

26 lines
644 B
C++

/*
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/os_interface/windows/os_time_win.h"
namespace NEO {
class MockOSTimeWin : public OSTimeWin {
public:
using OSTimeWin::deviceTime;
using OSTimeWin::maxGpuTimeStamp;
MockOSTimeWin(OSInterface &osInterface) : OSTimeWin(osInterface){};
void overrideQueryPerformanceCounterFunction(decltype(&QueryPerformanceCounter) function) {
this->QueryPerfomanceCounterFnc = function;
}
void setFrequency(LARGE_INTEGER frequency) {
this->frequency = frequency;
}
};
} // namespace NEO