Add a struct for test fixtures with correct method naming convention

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2022-08-11 11:28:20 +00:00
committed by Compute-Runtime-Automation
parent aed890a219
commit e6fc458d4b
363 changed files with 652 additions and 638 deletions

View File

@ -16,7 +16,7 @@
using namespace NEO;
using FileLoggerTests = Test<MockExecutionEnvironmentGmmFixture>;
using FileLoggerTests = TestLegacy<MockExecutionEnvironmentGmmFixture>;
TEST_F(FileLoggerTests, GivenLogAllocationMemoryPoolFlagThenLogsCorrectInfo) {
std::string testFile = "testfile";

View File

@ -45,7 +45,7 @@ class WddmMemoryManagerFixture : public GdiDllFixture {
const uint32_t rootDeviceIndex = 0u;
};
typedef ::Test<WddmMemoryManagerFixture> WddmMemoryManagerTest;
typedef ::TestLegacy<WddmMemoryManagerFixture> WddmMemoryManagerTest;
class MockWddmMemoryManagerFixture {
public:
@ -90,7 +90,7 @@ class MockWddmMemoryManagerFixture {
MockGdi *gdi = nullptr;
};
typedef ::Test<MockWddmMemoryManagerFixture> WddmMemoryManagerResidencyTest;
typedef ::TestLegacy<MockWddmMemoryManagerFixture> WddmMemoryManagerResidencyTest;
class ExecutionEnvironmentFixture : public ::testing::Test {
public: