Files
compute-runtime/unit_tests/os_interface/performance_counters_gen_tests.cpp
Piotr Maciejewski d1d794c658 Metrics Library Performance Counters implementation.
Signed-off-by: Piotr Maciejewski <piotr.maciejewski@intel.com>
Change-Id: I0f00dca1892f4857baaebc75ba2208a4f33db1bf
2019-07-04 15:56:47 +02:00

20 lines
393 B
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/os_interface/performance_counters.h"
#include "test.h"
using namespace NEO;
struct PerformanceCountersGenTest : public ::testing::Test {
};
class MockPerformanceCountersGen : public PerformanceCounters {
public:
MockPerformanceCountersGen() : PerformanceCounters() {
}
};